blob: c513a807b3a138e6e2d7d99e2d59e7a2e3fb1062 [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 */
Jon Paul Maloy6e498152015-07-30 18:24:19 -040051static const char *link_co_err = "Link tunneling error, ";
Erik Hugne2cf8aa12012-06-29 00:16:37 -040052static const char *link_rst_msg = "Resetting link ";
Richard Alpe7be57fc2014-11-20 10:29:12 +010053
Richard Alpe0655f6a2014-11-20 10:29:07 +010054/* Properties valid for media, bearar and link */
55static const struct nla_policy tipc_nl_prop_policy[TIPC_NLA_PROP_MAX + 1] = {
56 [TIPC_NLA_PROP_UNSPEC] = { .type = NLA_UNSPEC },
57 [TIPC_NLA_PROP_PRIO] = { .type = NLA_U32 },
58 [TIPC_NLA_PROP_TOL] = { .type = NLA_U32 },
59 [TIPC_NLA_PROP_WIN] = { .type = NLA_U32 }
60};
61
Jon Paul Maloy52666982015-10-22 08:51:41 -040062/* Send states for broadcast NACKs
63 */
64enum {
65 BC_NACK_SND_CONDITIONAL,
66 BC_NACK_SND_UNCONDITIONAL,
67 BC_NACK_SND_SUPPRESS,
68};
69
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090070/*
Jon Paul Maloyd9992972015-07-16 16:54:31 -040071 * Interval between NACKs when packets arrive out of order
72 */
73#define TIPC_NACK_INTV (TIPC_MIN_LINK_WIN * 2)
74/*
Allan Stephensa686e682008-06-04 17:29:39 -070075 * Out-of-range value for link session numbers
76 */
Jon Paul Maloyd3504c32015-07-16 16:54:25 -040077#define WILDCARD_SESSION 0x10000
Allan Stephensa686e682008-06-04 17:29:39 -070078
Jon Paul Maloy662921c2015-07-30 18:24:21 -040079/* Link FSM states:
Jon Paul Maloyd3504c32015-07-16 16:54:25 -040080 */
81enum {
Jon Paul Maloy662921c2015-07-30 18:24:21 -040082 LINK_ESTABLISHED = 0xe,
83 LINK_ESTABLISHING = 0xe << 4,
84 LINK_RESET = 0x1 << 8,
85 LINK_RESETTING = 0x2 << 12,
86 LINK_PEER_RESET = 0xd << 16,
87 LINK_FAILINGOVER = 0xf << 20,
88 LINK_SYNCHING = 0xc << 24
Jon Paul Maloyd3504c32015-07-16 16:54:25 -040089};
90
91/* Link FSM state checking routines
92 */
Jon Paul Maloy662921c2015-07-30 18:24:21 -040093static int link_is_up(struct tipc_link *l)
Jon Paul Maloyd3504c32015-07-16 16:54:25 -040094{
Jon Paul Maloy662921c2015-07-30 18:24:21 -040095 return l->state & (LINK_ESTABLISHED | LINK_SYNCHING);
Jon Paul Maloyd3504c32015-07-16 16:54:25 -040096}
97
Jon Paul Maloyd9992972015-07-16 16:54:31 -040098static int tipc_link_proto_rcv(struct tipc_link *l, struct sk_buff *skb,
99 struct sk_buff_head *xmitq);
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -0400100static void tipc_link_build_proto_msg(struct tipc_link *l, int mtyp, bool probe,
101 u16 rcvgap, int tolerance, int priority,
102 struct sk_buff_head *xmitq);
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500103static void link_print(struct tipc_link *l_ptr, const char *str);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400104static void tipc_link_build_nack_msg(struct tipc_link *l,
105 struct sk_buff_head *xmitq);
106static void tipc_link_build_bc_init_msg(struct tipc_link *l,
107 struct sk_buff_head *xmitq);
108static bool tipc_link_release_pkts(struct tipc_link *l, u16 to);
Jon Paul Maloy8b4ed862015-03-25 12:07:26 -0400109
Per Lidenb97bf3f2006-01-02 19:04:38 +0100110/*
Sam Ravnborg05790c62006-03-20 22:37:04 -0800111 * Simple non-static link routines (i.e. referenced outside this file)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100112 */
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400113bool tipc_link_is_up(struct tipc_link *l)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100114{
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400115 return link_is_up(l);
116}
117
Jon Paul Maloyc8199302015-10-15 14:52:46 -0400118bool tipc_link_peer_is_down(struct tipc_link *l)
119{
120 return l->state == LINK_PEER_RESET;
121}
122
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400123bool tipc_link_is_reset(struct tipc_link *l)
124{
125 return l->state & (LINK_RESET | LINK_FAILINGOVER | LINK_ESTABLISHING);
126}
127
Jon Paul Maloy73f646c2015-10-15 14:52:44 -0400128bool tipc_link_is_establishing(struct tipc_link *l)
129{
130 return l->state == LINK_ESTABLISHING;
131}
132
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400133bool tipc_link_is_synching(struct tipc_link *l)
134{
135 return l->state == LINK_SYNCHING;
136}
137
138bool tipc_link_is_failingover(struct tipc_link *l)
139{
140 return l->state == LINK_FAILINGOVER;
141}
142
143bool tipc_link_is_blocked(struct tipc_link *l)
144{
145 return l->state & (LINK_RESETTING | LINK_PEER_RESET | LINK_FAILINGOVER);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100146}
147
Wu Fengguang742e0382015-10-24 22:56:01 +0800148static bool link_is_bc_sndlink(struct tipc_link *l)
Jon Paul Maloy52666982015-10-22 08:51:41 -0400149{
150 return !l->bc_sndlink;
151}
152
Wu Fengguang742e0382015-10-24 22:56:01 +0800153static bool link_is_bc_rcvlink(struct tipc_link *l)
Jon Paul Maloy52666982015-10-22 08:51:41 -0400154{
155 return ((l->bc_rcvlink == l) && !link_is_bc_sndlink(l));
156}
157
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400158int tipc_link_is_active(struct tipc_link *l)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100159{
Jon Paul Maloyc72fa872015-10-22 08:51:46 -0400160 return l->active;
161}
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400162
Jon Paul Maloyc72fa872015-10-22 08:51:46 -0400163void tipc_link_set_active(struct tipc_link *l, bool active)
164{
165 l->active = active;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100166}
167
Jon Paul Maloy52666982015-10-22 08:51:41 -0400168void tipc_link_add_bc_peer(struct tipc_link *snd_l,
169 struct tipc_link *uc_l,
170 struct sk_buff_head *xmitq)
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400171{
Jon Paul Maloy52666982015-10-22 08:51:41 -0400172 struct tipc_link *rcv_l = uc_l->bc_rcvlink;
173
174 snd_l->ackers++;
175 rcv_l->acked = snd_l->snd_nxt - 1;
176 tipc_link_build_bc_init_msg(uc_l, xmitq);
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400177}
178
Jon Paul Maloy52666982015-10-22 08:51:41 -0400179void tipc_link_remove_bc_peer(struct tipc_link *snd_l,
180 struct tipc_link *rcv_l,
181 struct sk_buff_head *xmitq)
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400182{
Jon Paul Maloy52666982015-10-22 08:51:41 -0400183 u16 ack = snd_l->snd_nxt - 1;
184
185 snd_l->ackers--;
186 tipc_link_bc_ack_rcv(rcv_l, ack, xmitq);
187 tipc_link_reset(rcv_l);
188 rcv_l->state = LINK_RESET;
189 if (!snd_l->ackers) {
190 tipc_link_reset(snd_l);
191 __skb_queue_purge(xmitq);
192 }
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400193}
194
195int tipc_link_bc_peers(struct tipc_link *l)
196{
197 return l->ackers;
198}
199
Jon Paul Maloy959e1782015-10-22 08:51:43 -0400200void tipc_link_set_mtu(struct tipc_link *l, int mtu)
201{
202 l->mtu = mtu;
203}
204
205int tipc_link_mtu(struct tipc_link *l)
206{
207 return l->mtu;
208}
209
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400210static u32 link_own_addr(struct tipc_link *l)
211{
212 return msg_prevnode(l->pmsg);
213}
214
Per Lidenb97bf3f2006-01-02 19:04:38 +0100215/**
Per Liden4323add2006-01-18 00:38:21 +0100216 * tipc_link_create - create a new link
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400217 * @n: pointer to associated node
Jon Paul Maloy0e054982015-10-22 08:51:36 -0400218 * @if_name: associated interface name
219 * @bearer_id: id (index) of associated bearer
220 * @tolerance: link tolerance to be used by link
221 * @net_plane: network plane (A,B,c..) this link belongs to
222 * @mtu: mtu to be advertised by link
223 * @priority: priority to be used by link
224 * @window: send window to be used by link
225 * @session: session to be used by link
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400226 * @ownnode: identity of own node
Jon Paul Maloy0e054982015-10-22 08:51:36 -0400227 * @peer: node id of peer node
Jon Paul Maloyfd556f22015-10-22 08:51:40 -0400228 * @peer_caps: bitmap describing peer node capabilities
Jon Paul Maloy52666982015-10-22 08:51:41 -0400229 * @bc_sndlink: the namespace global link used for broadcast sending
230 * @bc_rcvlink: the peer specific link used for broadcast reception
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400231 * @inputq: queue to put messages ready for delivery
232 * @namedq: queue to put binding table update messages ready for delivery
233 * @link: return value, pointer to put the created link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900234 *
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400235 * Returns true if link was created, otherwise false
Per Lidenb97bf3f2006-01-02 19:04:38 +0100236 */
Jon Paul Maloyc72fa872015-10-22 08:51:46 -0400237bool tipc_link_create(struct net *net, char *if_name, int bearer_id,
Jon Paul Maloy0e054982015-10-22 08:51:36 -0400238 int tolerance, char net_plane, u32 mtu, int priority,
239 int window, u32 session, u32 ownnode, u32 peer,
Jon Paul Maloy52666982015-10-22 08:51:41 -0400240 u16 peer_caps,
Jon Paul Maloy52666982015-10-22 08:51:41 -0400241 struct tipc_link *bc_sndlink,
242 struct tipc_link *bc_rcvlink,
243 struct sk_buff_head *inputq,
244 struct sk_buff_head *namedq,
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400245 struct tipc_link **link)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100246{
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400247 struct tipc_link *l;
248 struct tipc_msg *hdr;
Allan Stephens37b9c082011-02-28 11:32:27 -0500249
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400250 l = kzalloc(sizeof(*l), GFP_ATOMIC);
251 if (!l)
252 return false;
253 *link = l;
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400254 l->pmsg = (struct tipc_msg *)&l->proto_msg;
255 hdr = l->pmsg;
256 tipc_msg_init(ownnode, hdr, LINK_PROTOCOL, RESET_MSG, INT_H_SIZE, peer);
257 msg_set_size(hdr, sizeof(l->proto_msg));
258 msg_set_session(hdr, session);
259 msg_set_bearer_id(hdr, l->bearer_id);
Jon Paul Maloy0e054982015-10-22 08:51:36 -0400260
261 /* Note: peer i/f name is completed by reset/activate message */
262 sprintf(l->name, "%u.%u.%u:%s-%u.%u.%u:unknown",
263 tipc_zone(ownnode), tipc_cluster(ownnode), tipc_node(ownnode),
264 if_name, tipc_zone(peer), tipc_cluster(peer), tipc_node(peer));
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400265 strcpy((char *)msg_data(hdr), if_name);
Jon Paul Maloy0e054982015-10-22 08:51:36 -0400266
267 l->addr = peer;
Jon Paul Maloyfd556f22015-10-22 08:51:40 -0400268 l->peer_caps = peer_caps;
Jon Paul Maloyc72fa872015-10-22 08:51:46 -0400269 l->net = net;
Jon Paul Maloy0e054982015-10-22 08:51:36 -0400270 l->peer_session = WILDCARD_SESSION;
271 l->bearer_id = bearer_id;
272 l->tolerance = tolerance;
273 l->net_plane = net_plane;
274 l->advertised_mtu = mtu;
275 l->mtu = mtu;
276 l->priority = priority;
277 tipc_link_set_queue_limits(l, window);
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -0400278 l->ackers = 1;
Jon Paul Maloy52666982015-10-22 08:51:41 -0400279 l->bc_sndlink = bc_sndlink;
280 l->bc_rcvlink = bc_rcvlink;
Jon Paul Maloy0e054982015-10-22 08:51:36 -0400281 l->inputq = inputq;
282 l->namedq = namedq;
283 l->state = LINK_RESETTING;
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400284 __skb_queue_head_init(&l->transmq);
285 __skb_queue_head_init(&l->backlogq);
286 __skb_queue_head_init(&l->deferdq);
287 skb_queue_head_init(&l->wakeupq);
288 skb_queue_head_init(l->inputq);
289 return true;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100290}
291
Jon Paul Maloy32301902015-10-22 08:51:37 -0400292/**
293 * tipc_link_bc_create - create new link to be used for broadcast
294 * @n: pointer to associated node
295 * @mtu: mtu to be used
296 * @window: send window to be used
297 * @inputq: queue to put messages ready for delivery
298 * @namedq: queue to put binding table update messages ready for delivery
299 * @link: return value, pointer to put the created link
300 *
301 * Returns true if link was created, otherwise false
302 */
Jon Paul Maloyc72fa872015-10-22 08:51:46 -0400303bool tipc_link_bc_create(struct net *net, u32 ownnode, u32 peer,
Jon Paul Maloy52666982015-10-22 08:51:41 -0400304 int mtu, int window, u16 peer_caps,
Jon Paul Maloy32301902015-10-22 08:51:37 -0400305 struct sk_buff_head *inputq,
306 struct sk_buff_head *namedq,
Jon Paul Maloy52666982015-10-22 08:51:41 -0400307 struct tipc_link *bc_sndlink,
Jon Paul Maloy32301902015-10-22 08:51:37 -0400308 struct tipc_link **link)
309{
310 struct tipc_link *l;
311
Jon Paul Maloyc72fa872015-10-22 08:51:46 -0400312 if (!tipc_link_create(net, "", MAX_BEARERS, 0, 'Z', mtu, 0, window,
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -0400313 0, ownnode, peer, peer_caps, bc_sndlink,
Jon Paul Maloy52666982015-10-22 08:51:41 -0400314 NULL, inputq, namedq, link))
Jon Paul Maloy32301902015-10-22 08:51:37 -0400315 return false;
316
317 l = *link;
318 strcpy(l->name, tipc_bclink_name);
319 tipc_link_reset(l);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400320 l->state = LINK_RESET;
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400321 l->ackers = 0;
Jon Paul Maloy52666982015-10-22 08:51:41 -0400322 l->bc_rcvlink = l;
323
324 /* Broadcast send link is always up */
325 if (link_is_bc_sndlink(l))
326 l->state = LINK_ESTABLISHED;
327
Jon Paul Maloy32301902015-10-22 08:51:37 -0400328 return true;
329}
330
Per Lidenb97bf3f2006-01-02 19:04:38 +0100331/**
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400332 * tipc_link_fsm_evt - link finite state machine
333 * @l: pointer to link
334 * @evt: state machine event to be processed
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400335 */
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400336int tipc_link_fsm_evt(struct tipc_link *l, int evt)
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400337{
Jon Paul Maloy5045f7b2015-07-30 18:24:20 -0400338 int rc = 0;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400339
340 switch (l->state) {
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400341 case LINK_RESETTING:
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400342 switch (evt) {
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400343 case LINK_PEER_RESET_EVT:
344 l->state = LINK_PEER_RESET;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400345 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400346 case LINK_RESET_EVT:
347 l->state = LINK_RESET;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400348 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400349 case LINK_FAILURE_EVT:
350 case LINK_FAILOVER_BEGIN_EVT:
351 case LINK_ESTABLISH_EVT:
352 case LINK_FAILOVER_END_EVT:
353 case LINK_SYNCH_BEGIN_EVT:
354 case LINK_SYNCH_END_EVT:
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400355 default:
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400356 goto illegal_evt;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400357 }
358 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400359 case LINK_RESET:
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400360 switch (evt) {
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400361 case LINK_PEER_RESET_EVT:
362 l->state = LINK_ESTABLISHING;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400363 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400364 case LINK_FAILOVER_BEGIN_EVT:
365 l->state = LINK_FAILINGOVER;
366 case LINK_FAILURE_EVT:
367 case LINK_RESET_EVT:
368 case LINK_ESTABLISH_EVT:
369 case LINK_FAILOVER_END_EVT:
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400370 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400371 case LINK_SYNCH_BEGIN_EVT:
372 case LINK_SYNCH_END_EVT:
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400373 default:
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400374 goto illegal_evt;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400375 }
376 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400377 case LINK_PEER_RESET:
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400378 switch (evt) {
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400379 case LINK_RESET_EVT:
380 l->state = LINK_ESTABLISHING;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400381 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400382 case LINK_PEER_RESET_EVT:
383 case LINK_ESTABLISH_EVT:
384 case LINK_FAILURE_EVT:
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400385 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400386 case LINK_SYNCH_BEGIN_EVT:
387 case LINK_SYNCH_END_EVT:
388 case LINK_FAILOVER_BEGIN_EVT:
389 case LINK_FAILOVER_END_EVT:
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400390 default:
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400391 goto illegal_evt;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400392 }
393 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400394 case LINK_FAILINGOVER:
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400395 switch (evt) {
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400396 case LINK_FAILOVER_END_EVT:
397 l->state = LINK_RESET;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400398 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400399 case LINK_PEER_RESET_EVT:
400 case LINK_RESET_EVT:
401 case LINK_ESTABLISH_EVT:
402 case LINK_FAILURE_EVT:
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400403 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400404 case LINK_FAILOVER_BEGIN_EVT:
405 case LINK_SYNCH_BEGIN_EVT:
406 case LINK_SYNCH_END_EVT:
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400407 default:
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400408 goto illegal_evt;
409 }
410 break;
411 case LINK_ESTABLISHING:
412 switch (evt) {
413 case LINK_ESTABLISH_EVT:
414 l->state = LINK_ESTABLISHED;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400415 break;
416 case LINK_FAILOVER_BEGIN_EVT:
417 l->state = LINK_FAILINGOVER;
418 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400419 case LINK_RESET_EVT:
Jon Paul Maloy73f646c2015-10-15 14:52:44 -0400420 l->state = LINK_RESET;
421 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400422 case LINK_FAILURE_EVT:
Jon Paul Maloy73f646c2015-10-15 14:52:44 -0400423 case LINK_PEER_RESET_EVT:
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400424 case LINK_SYNCH_BEGIN_EVT:
425 case LINK_FAILOVER_END_EVT:
426 break;
427 case LINK_SYNCH_END_EVT:
428 default:
429 goto illegal_evt;
430 }
431 break;
432 case LINK_ESTABLISHED:
433 switch (evt) {
434 case LINK_PEER_RESET_EVT:
435 l->state = LINK_PEER_RESET;
436 rc |= TIPC_LINK_DOWN_EVT;
437 break;
438 case LINK_FAILURE_EVT:
439 l->state = LINK_RESETTING;
440 rc |= TIPC_LINK_DOWN_EVT;
441 break;
442 case LINK_RESET_EVT:
443 l->state = LINK_RESET;
444 break;
445 case LINK_ESTABLISH_EVT:
Jon Paul Maloy5ae2f8e2015-08-20 02:12:55 -0400446 case LINK_SYNCH_END_EVT:
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400447 break;
448 case LINK_SYNCH_BEGIN_EVT:
449 l->state = LINK_SYNCHING;
450 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400451 case LINK_FAILOVER_BEGIN_EVT:
452 case LINK_FAILOVER_END_EVT:
453 default:
454 goto illegal_evt;
455 }
456 break;
457 case LINK_SYNCHING:
458 switch (evt) {
459 case LINK_PEER_RESET_EVT:
460 l->state = LINK_PEER_RESET;
461 rc |= TIPC_LINK_DOWN_EVT;
462 break;
463 case LINK_FAILURE_EVT:
464 l->state = LINK_RESETTING;
465 rc |= TIPC_LINK_DOWN_EVT;
466 break;
467 case LINK_RESET_EVT:
468 l->state = LINK_RESET;
469 break;
470 case LINK_ESTABLISH_EVT:
471 case LINK_SYNCH_BEGIN_EVT:
472 break;
473 case LINK_SYNCH_END_EVT:
474 l->state = LINK_ESTABLISHED;
475 break;
476 case LINK_FAILOVER_BEGIN_EVT:
477 case LINK_FAILOVER_END_EVT:
478 default:
479 goto illegal_evt;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400480 }
481 break;
482 default:
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400483 pr_err("Unknown FSM state %x in %s\n", l->state, l->name);
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400484 }
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400485 return rc;
486illegal_evt:
487 pr_err("Illegal FSM event %x in state %x on link %s\n",
488 evt, l->state, l->name);
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400489 return rc;
490}
491
Jon Paul Maloy333ef692015-07-16 16:54:28 -0400492/* link_profile_stats - update statistical profiling of traffic
493 */
494static void link_profile_stats(struct tipc_link *l)
495{
496 struct sk_buff *skb;
497 struct tipc_msg *msg;
498 int length;
499
500 /* Update counters used in statistical profiling of send traffic */
501 l->stats.accu_queue_sz += skb_queue_len(&l->transmq);
502 l->stats.queue_sz_counts++;
503
504 skb = skb_peek(&l->transmq);
505 if (!skb)
506 return;
507 msg = buf_msg(skb);
508 length = msg_size(msg);
509
510 if (msg_user(msg) == MSG_FRAGMENTER) {
511 if (msg_type(msg) != FIRST_FRAGMENT)
512 return;
513 length = msg_size(msg_get_wrapped(msg));
514 }
515 l->stats.msg_lengths_total += length;
516 l->stats.msg_length_counts++;
517 if (length <= 64)
518 l->stats.msg_length_profile[0]++;
519 else if (length <= 256)
520 l->stats.msg_length_profile[1]++;
521 else if (length <= 1024)
522 l->stats.msg_length_profile[2]++;
523 else if (length <= 4096)
524 l->stats.msg_length_profile[3]++;
525 else if (length <= 16384)
526 l->stats.msg_length_profile[4]++;
527 else if (length <= 32768)
528 l->stats.msg_length_profile[5]++;
529 else
530 l->stats.msg_length_profile[6]++;
531}
532
533/* tipc_link_timeout - perform periodic task as instructed from node timeout
534 */
Jon Paul Maloy52666982015-10-22 08:51:41 -0400535/* tipc_link_timeout - perform periodic task as instructed from node timeout
536 */
Jon Paul Maloy333ef692015-07-16 16:54:28 -0400537int tipc_link_timeout(struct tipc_link *l, struct sk_buff_head *xmitq)
538{
539 int rc = 0;
Jon Paul Maloy5045f7b2015-07-30 18:24:20 -0400540 int mtyp = STATE_MSG;
541 bool xmit = false;
542 bool prb = false;
Jon Paul Maloy52666982015-10-22 08:51:41 -0400543 u16 bc_snt = l->bc_sndlink->snd_nxt - 1;
544 u16 bc_acked = l->bc_rcvlink->acked;
545 bool bc_up = link_is_up(l->bc_rcvlink);
Jon Paul Maloy333ef692015-07-16 16:54:28 -0400546
547 link_profile_stats(l);
Jon Paul Maloy5045f7b2015-07-30 18:24:20 -0400548
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400549 switch (l->state) {
550 case LINK_ESTABLISHED:
551 case LINK_SYNCHING:
Jon Paul Maloy5045f7b2015-07-30 18:24:20 -0400552 if (!l->silent_intv_cnt) {
Jon Paul Maloy52666982015-10-22 08:51:41 -0400553 if (bc_up && (bc_acked != bc_snt))
Jon Paul Maloy5045f7b2015-07-30 18:24:20 -0400554 xmit = true;
555 } else if (l->silent_intv_cnt <= l->abort_limit) {
556 xmit = true;
557 prb = true;
558 } else {
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400559 rc |= tipc_link_fsm_evt(l, LINK_FAILURE_EVT);
Jon Paul Maloy5045f7b2015-07-30 18:24:20 -0400560 }
561 l->silent_intv_cnt++;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400562 break;
563 case LINK_RESET:
Jon Paul Maloy5045f7b2015-07-30 18:24:20 -0400564 xmit = true;
565 mtyp = RESET_MSG;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400566 break;
567 case LINK_ESTABLISHING:
Jon Paul Maloy5045f7b2015-07-30 18:24:20 -0400568 xmit = true;
569 mtyp = ACTIVATE_MSG;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400570 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400571 case LINK_PEER_RESET:
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400572 case LINK_RESETTING:
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400573 case LINK_FAILINGOVER:
574 break;
575 default:
576 break;
Jon Paul Maloy5045f7b2015-07-30 18:24:20 -0400577 }
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400578
Jon Paul Maloy5045f7b2015-07-30 18:24:20 -0400579 if (xmit)
580 tipc_link_build_proto_msg(l, mtyp, prb, 0, 0, 0, xmitq);
581
Jon Paul Maloy333ef692015-07-16 16:54:28 -0400582 return rc;
583}
584
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400585/**
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400586 * link_schedule_user - schedule a message sender for wakeup after congestion
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400587 * @link: congested link
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400588 * @list: message that was attempted sent
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400589 * Create pseudo msg to send back to user when congestion abates
Jon Paul Maloy22d85c72015-07-16 16:54:23 -0400590 * Does not consume buffer list
Per Lidenb97bf3f2006-01-02 19:04:38 +0100591 */
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400592static int link_schedule_user(struct tipc_link *link, struct sk_buff_head *list)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100593{
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400594 struct tipc_msg *msg = buf_msg(skb_peek(list));
595 int imp = msg_importance(msg);
596 u32 oport = msg_origport(msg);
597 u32 addr = link_own_addr(link);
598 struct sk_buff *skb;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100599
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400600 /* This really cannot happen... */
601 if (unlikely(imp > TIPC_CRITICAL_IMPORTANCE)) {
602 pr_warn("%s<%s>, send queue full", link_rst_msg, link->name);
Jon Paul Maloy22d85c72015-07-16 16:54:23 -0400603 return -ENOBUFS;
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400604 }
605 /* Non-blocking sender: */
606 if (TIPC_SKB_CB(skb_peek(list))->wakeup_pending)
607 return -ELINKCONG;
608
609 /* Create and schedule wakeup pseudo message */
610 skb = tipc_msg_create(SOCK_WAKEUP, 0, INT_H_SIZE, 0,
611 addr, addr, oport, 0, 0);
612 if (!skb)
Jon Paul Maloy22d85c72015-07-16 16:54:23 -0400613 return -ENOBUFS;
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400614 TIPC_SKB_CB(skb)->chain_sz = skb_queue_len(list);
615 TIPC_SKB_CB(skb)->chain_imp = imp;
616 skb_queue_tail(&link->wakeupq, skb);
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400617 link->stats.link_congs++;
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400618 return -ELINKCONG;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100619}
620
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400621/**
622 * link_prepare_wakeup - prepare users for wakeup after congestion
623 * @link: congested link
624 * Move a number of waiting users, as permitted by available space in
625 * the send queue, from link wait queue to node wait queue for wakeup
626 */
Jon Paul Maloy1f66d162015-03-25 12:07:24 -0400627void link_prepare_wakeup(struct tipc_link *l)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100628{
Jon Paul Maloy1f66d162015-03-25 12:07:24 -0400629 int pnd[TIPC_SYSTEM_IMPORTANCE + 1] = {0,};
630 int imp, lim;
Ying Xue58d78b32014-11-26 11:41:51 +0800631 struct sk_buff *skb, *tmp;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100632
Jon Paul Maloy1f66d162015-03-25 12:07:24 -0400633 skb_queue_walk_safe(&l->wakeupq, skb, tmp) {
634 imp = TIPC_SKB_CB(skb)->chain_imp;
635 lim = l->window + l->backlog[imp].limit;
636 pnd[imp] += TIPC_SKB_CB(skb)->chain_sz;
637 if ((pnd[imp] + l->backlog[imp].len) >= lim)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100638 break;
Jon Paul Maloy1f66d162015-03-25 12:07:24 -0400639 skb_unlink(skb, &l->wakeupq);
Jon Paul Maloyd39bbd42015-07-16 16:54:21 -0400640 skb_queue_tail(l->inputq, skb);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100641 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100642}
643
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400644void tipc_link_reset(struct tipc_link *l)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100645{
Allan Stephensa686e682008-06-04 17:29:39 -0700646 /* Link is down, accept any session */
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400647 l->peer_session = WILDCARD_SESSION;
648
649 /* If peer is up, it only accepts an incremented session number */
650 msg_set_session(l->pmsg, msg_session(l->pmsg) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100651
Jon Paul Maloyed193ec2015-04-02 09:33:02 -0400652 /* Prepare for renewed mtu size negotiation */
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400653 l->mtu = l->advertised_mtu;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900654
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -0400655 /* Clean up all queues and counters: */
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400656 __skb_queue_purge(&l->transmq);
657 __skb_queue_purge(&l->deferdq);
Jon Paul Maloy23d83352015-07-30 18:24:24 -0400658 skb_queue_splice_init(&l->wakeupq, l->inputq);
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -0400659 __skb_queue_purge(&l->backlogq);
660 l->backlog[TIPC_LOW_IMPORTANCE].len = 0;
661 l->backlog[TIPC_MEDIUM_IMPORTANCE].len = 0;
662 l->backlog[TIPC_HIGH_IMPORTANCE].len = 0;
663 l->backlog[TIPC_CRITICAL_IMPORTANCE].len = 0;
664 l->backlog[TIPC_SYSTEM_IMPORTANCE].len = 0;
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400665 kfree_skb(l->reasm_buf);
666 kfree_skb(l->failover_reasm_skb);
667 l->reasm_buf = NULL;
668 l->failover_reasm_skb = NULL;
669 l->rcv_unacked = 0;
670 l->snd_nxt = 1;
671 l->rcv_nxt = 1;
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -0400672 l->acked = 0;
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400673 l->silent_intv_cnt = 0;
674 l->stats.recv_info = 0;
675 l->stale_count = 0;
Jon Paul Maloy52666982015-10-22 08:51:41 -0400676 l->bc_peer_is_up = false;
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400677 link_reset_statistics(l);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100678}
679
Per Lidenb97bf3f2006-01-02 19:04:38 +0100680/**
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -0400681 * tipc_link_xmit(): enqueue buffer list according to queue situation
682 * @link: link to use
683 * @list: chain of buffers containing message
684 * @xmitq: returned list of packets to be sent by caller
685 *
686 * Consumes the buffer chain, except when returning -ELINKCONG,
687 * since the caller then may want to make more send attempts.
688 * Returns 0 if success, or errno: -ELINKCONG, -EMSGSIZE or -ENOBUFS
689 * Messages at TIPC_SYSTEM_IMPORTANCE are always accepted
690 */
691int tipc_link_xmit(struct tipc_link *l, struct sk_buff_head *list,
692 struct sk_buff_head *xmitq)
693{
694 struct tipc_msg *hdr = buf_msg(skb_peek(list));
695 unsigned int maxwin = l->window;
696 unsigned int i, imp = msg_importance(hdr);
697 unsigned int mtu = l->mtu;
698 u16 ack = l->rcv_nxt - 1;
699 u16 seqno = l->snd_nxt;
Jon Paul Maloy52666982015-10-22 08:51:41 -0400700 u16 bc_ack = l->bc_rcvlink->rcv_nxt - 1;
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -0400701 struct sk_buff_head *transmq = &l->transmq;
702 struct sk_buff_head *backlogq = &l->backlogq;
703 struct sk_buff *skb, *_skb, *bskb;
704
705 /* Match msg importance against this and all higher backlog limits: */
706 for (i = imp; i <= TIPC_SYSTEM_IMPORTANCE; i++) {
707 if (unlikely(l->backlog[i].len >= l->backlog[i].limit))
708 return link_schedule_user(l, list);
709 }
710 if (unlikely(msg_size(hdr) > mtu))
711 return -EMSGSIZE;
712
713 /* Prepare each packet for sending, and add to relevant queue: */
714 while (skb_queue_len(list)) {
715 skb = skb_peek(list);
716 hdr = buf_msg(skb);
717 msg_set_seqno(hdr, seqno);
718 msg_set_ack(hdr, ack);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400719 msg_set_bcast_ack(hdr, bc_ack);
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -0400720
721 if (likely(skb_queue_len(transmq) < maxwin)) {
722 _skb = skb_clone(skb, GFP_ATOMIC);
723 if (!_skb)
724 return -ENOBUFS;
725 __skb_dequeue(list);
726 __skb_queue_tail(transmq, skb);
727 __skb_queue_tail(xmitq, _skb);
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -0400728 TIPC_SKB_CB(skb)->ackers = l->ackers;
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -0400729 l->rcv_unacked = 0;
730 seqno++;
731 continue;
732 }
733 if (tipc_msg_bundle(skb_peek_tail(backlogq), hdr, mtu)) {
734 kfree_skb(__skb_dequeue(list));
735 l->stats.sent_bundled++;
736 continue;
737 }
738 if (tipc_msg_make_bundle(&bskb, hdr, mtu, l->addr)) {
739 kfree_skb(__skb_dequeue(list));
740 __skb_queue_tail(backlogq, bskb);
741 l->backlog[msg_importance(buf_msg(bskb))].len++;
742 l->stats.sent_bundled++;
743 l->stats.sent_bundles++;
744 continue;
745 }
746 l->backlog[imp].len += skb_queue_len(list);
747 skb_queue_splice_tail_init(list, backlogq);
748 }
749 l->snd_nxt = seqno;
750 return 0;
751}
752
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400753void tipc_link_advance_backlog(struct tipc_link *l, struct sk_buff_head *xmitq)
754{
755 struct sk_buff *skb, *_skb;
756 struct tipc_msg *hdr;
757 u16 seqno = l->snd_nxt;
758 u16 ack = l->rcv_nxt - 1;
Jon Paul Maloy52666982015-10-22 08:51:41 -0400759 u16 bc_ack = l->bc_rcvlink->rcv_nxt - 1;
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400760
761 while (skb_queue_len(&l->transmq) < l->window) {
762 skb = skb_peek(&l->backlogq);
763 if (!skb)
764 break;
765 _skb = skb_clone(skb, GFP_ATOMIC);
766 if (!_skb)
767 break;
768 __skb_dequeue(&l->backlogq);
769 hdr = buf_msg(skb);
770 l->backlog[msg_importance(hdr)].len--;
771 __skb_queue_tail(&l->transmq, skb);
772 __skb_queue_tail(xmitq, _skb);
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -0400773 TIPC_SKB_CB(skb)->ackers = l->ackers;
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400774 msg_set_seqno(hdr, seqno);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400775 msg_set_ack(hdr, ack);
776 msg_set_bcast_ack(hdr, bc_ack);
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400777 l->rcv_unacked = 0;
778 seqno++;
779 }
780 l->snd_nxt = seqno;
781}
782
Jon Paul Maloy52666982015-10-22 08:51:41 -0400783static void link_retransmit_failure(struct tipc_link *l, struct sk_buff *skb)
Allan Stephensd356eeb2006-06-25 23:40:01 -0700784{
Jon Paul Maloy52666982015-10-22 08:51:41 -0400785 struct tipc_msg *hdr = buf_msg(skb);
Allan Stephensd356eeb2006-06-25 23:40:01 -0700786
Jon Paul Maloy52666982015-10-22 08:51:41 -0400787 pr_warn("Retransmission failure on link <%s>\n", l->name);
788 link_print(l, "Resetting link ");
789 pr_info("Failed msg: usr %u, typ %u, len %u, err %u\n",
790 msg_user(hdr), msg_type(hdr), msg_size(hdr), msg_errcode(hdr));
791 pr_info("sqno %u, prev: %x, src: %x\n",
792 msg_seqno(hdr), msg_prevnode(hdr), msg_orignode(hdr));
Allan Stephensd356eeb2006-06-25 23:40:01 -0700793}
794
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -0400795int tipc_link_retrans(struct tipc_link *l, u16 from, u16 to,
796 struct sk_buff_head *xmitq)
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400797{
798 struct sk_buff *_skb, *skb = skb_peek(&l->transmq);
799 struct tipc_msg *hdr;
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -0400800 u16 ack = l->rcv_nxt - 1;
Jon Paul Maloy52666982015-10-22 08:51:41 -0400801 u16 bc_ack = l->bc_rcvlink->rcv_nxt - 1;
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400802
803 if (!skb)
804 return 0;
805
806 /* Detect repeated retransmit failures on same packet */
807 if (likely(l->last_retransm != buf_seqno(skb))) {
808 l->last_retransm = buf_seqno(skb);
809 l->stale_count = 1;
810 } else if (++l->stale_count > 100) {
811 link_retransmit_failure(l, skb);
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400812 return tipc_link_fsm_evt(l, LINK_FAILURE_EVT);
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400813 }
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -0400814
815 /* Move forward to where retransmission should start */
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400816 skb_queue_walk(&l->transmq, skb) {
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -0400817 if (!less(buf_seqno(skb), from))
818 break;
819 }
820
821 skb_queue_walk_from(&l->transmq, skb) {
822 if (more(buf_seqno(skb), to))
823 break;
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400824 hdr = buf_msg(skb);
825 _skb = __pskb_copy(skb, MIN_H_SIZE, GFP_ATOMIC);
826 if (!_skb)
827 return 0;
828 hdr = buf_msg(_skb);
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -0400829 msg_set_ack(hdr, ack);
830 msg_set_bcast_ack(hdr, bc_ack);
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400831 _skb->priority = TC_PRIO_CONTROL;
832 __skb_queue_tail(xmitq, _skb);
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400833 l->stats.retransmitted++;
834 }
835 return 0;
836}
837
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500838/* tipc_data_input - deliver data and name distr msgs to upper layer
Erik Hugne7ae934b2014-07-01 10:22:40 +0200839 *
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500840 * Consumes buffer if message is of right type
Erik Hugne7ae934b2014-07-01 10:22:40 +0200841 * Node lock must be held
842 */
Jon Paul Maloy52666982015-10-22 08:51:41 -0400843static bool tipc_data_input(struct tipc_link *l, struct sk_buff *skb,
Jon Paul Maloy9073fb82015-07-30 18:24:25 -0400844 struct sk_buff_head *inputq)
Erik Hugne7ae934b2014-07-01 10:22:40 +0200845{
Jon Paul Maloy9073fb82015-07-30 18:24:25 -0400846 switch (msg_user(buf_msg(skb))) {
Erik Hugne7ae934b2014-07-01 10:22:40 +0200847 case TIPC_LOW_IMPORTANCE:
848 case TIPC_MEDIUM_IMPORTANCE:
849 case TIPC_HIGH_IMPORTANCE:
850 case TIPC_CRITICAL_IMPORTANCE:
851 case CONN_MANAGER:
Jon Paul Maloy9945e802015-10-15 14:52:40 -0400852 skb_queue_tail(inputq, skb);
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500853 return true;
Erik Hugne7ae934b2014-07-01 10:22:40 +0200854 case NAME_DISTRIBUTOR:
Jon Paul Maloy52666982015-10-22 08:51:41 -0400855 l->bc_rcvlink->state = LINK_ESTABLISHED;
856 skb_queue_tail(l->namedq, skb);
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500857 return true;
Erik Hugne7ae934b2014-07-01 10:22:40 +0200858 case MSG_BUNDLER:
Jon Paul Maloydff29b12015-04-02 09:33:01 -0400859 case TUNNEL_PROTOCOL:
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500860 case MSG_FRAGMENTER:
861 case BCAST_PROTOCOL:
862 return false;
863 default:
864 pr_warn("Dropping received illegal msg type\n");
865 kfree_skb(skb);
866 return false;
867 };
868}
869
870/* tipc_link_input - process packet that has passed link protocol check
871 *
872 * Consumes buffer
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500873 */
Jon Paul Maloy9073fb82015-07-30 18:24:25 -0400874static int tipc_link_input(struct tipc_link *l, struct sk_buff *skb,
875 struct sk_buff_head *inputq)
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500876{
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400877 struct tipc_msg *hdr = buf_msg(skb);
878 struct sk_buff **reasm_skb = &l->reasm_buf;
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500879 struct sk_buff *iskb;
Jon Paul Maloy9945e802015-10-15 14:52:40 -0400880 struct sk_buff_head tmpq;
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400881 int usr = msg_user(hdr);
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400882 int rc = 0;
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400883 int pos = 0;
884 int ipos = 0;
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500885
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400886 if (unlikely(usr == TUNNEL_PROTOCOL)) {
887 if (msg_type(hdr) == SYNCH_MSG) {
888 __skb_queue_purge(&l->deferdq);
889 goto drop;
Jon Paul Maloy8b4ed862015-03-25 12:07:26 -0400890 }
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400891 if (!tipc_msg_extract(skb, &iskb, &ipos))
892 return rc;
893 kfree_skb(skb);
894 skb = iskb;
895 hdr = buf_msg(skb);
896 if (less(msg_seqno(hdr), l->drop_point))
897 goto drop;
Jon Paul Maloy9073fb82015-07-30 18:24:25 -0400898 if (tipc_data_input(l, skb, inputq))
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400899 return rc;
900 usr = msg_user(hdr);
901 reasm_skb = &l->failover_reasm_skb;
902 }
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500903
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400904 if (usr == MSG_BUNDLER) {
Jon Paul Maloy9945e802015-10-15 14:52:40 -0400905 skb_queue_head_init(&tmpq);
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400906 l->stats.recv_bundles++;
907 l->stats.recv_bundled += msg_msgcnt(hdr);
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500908 while (tipc_msg_extract(skb, &iskb, &pos))
Jon Paul Maloy9945e802015-10-15 14:52:40 -0400909 tipc_data_input(l, iskb, &tmpq);
910 tipc_skb_queue_splice_tail(&tmpq, inputq);
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400911 return 0;
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400912 } else if (usr == MSG_FRAGMENTER) {
913 l->stats.recv_fragments++;
914 if (tipc_buf_append(reasm_skb, &skb)) {
915 l->stats.recv_fragmented++;
Jon Paul Maloy9073fb82015-07-30 18:24:25 -0400916 tipc_data_input(l, skb, inputq);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400917 } else if (!*reasm_skb && !link_is_bc_rcvlink(l)) {
918 pr_warn_ratelimited("Unable to build fragment list\n");
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400919 return tipc_link_fsm_evt(l, LINK_FAILURE_EVT);
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500920 }
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400921 return 0;
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400922 } else if (usr == BCAST_PROTOCOL) {
Jon Paul Maloyc72fa872015-10-22 08:51:46 -0400923 tipc_bcast_lock(l->net);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400924 tipc_link_bc_init_rcv(l->bc_rcvlink, hdr);
Jon Paul Maloyc72fa872015-10-22 08:51:46 -0400925 tipc_bcast_unlock(l->net);
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400926 }
927drop:
928 kfree_skb(skb);
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400929 return 0;
Erik Hugne7ae934b2014-07-01 10:22:40 +0200930}
931
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400932static bool tipc_link_release_pkts(struct tipc_link *l, u16 acked)
933{
934 bool released = false;
935 struct sk_buff *skb, *tmp;
936
937 skb_queue_walk_safe(&l->transmq, skb, tmp) {
938 if (more(buf_seqno(skb), acked))
939 break;
940 __skb_unlink(skb, &l->transmq);
941 kfree_skb(skb);
942 released = true;
943 }
944 return released;
945}
946
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -0400947/* tipc_link_build_ack_msg: prepare link acknowledge message for transmission
Jon Paul Maloy52666982015-10-22 08:51:41 -0400948 *
949 * Note that sending of broadcast ack is coordinated among nodes, to reduce
950 * risk of ack storms towards the sender
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -0400951 */
Jon Paul Maloy52666982015-10-22 08:51:41 -0400952int tipc_link_build_ack_msg(struct tipc_link *l, struct sk_buff_head *xmitq)
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -0400953{
Jon Paul Maloy52666982015-10-22 08:51:41 -0400954 if (!l)
955 return 0;
956
957 /* Broadcast ACK must be sent via a unicast link => defer to caller */
958 if (link_is_bc_rcvlink(l)) {
959 if (((l->rcv_nxt ^ link_own_addr(l)) & 0xf) != 0xf)
960 return 0;
961 l->rcv_unacked = 0;
962 return TIPC_LINK_SND_BC_ACK;
963 }
964
965 /* Unicast ACK */
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -0400966 l->rcv_unacked = 0;
967 l->stats.sent_acks++;
968 tipc_link_build_proto_msg(l, STATE_MSG, 0, 0, 0, 0, xmitq);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400969 return 0;
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -0400970}
971
Jon Paul Maloy282b3a02015-10-15 14:52:45 -0400972/* tipc_link_build_reset_msg: prepare link RESET or ACTIVATE message
973 */
974void tipc_link_build_reset_msg(struct tipc_link *l, struct sk_buff_head *xmitq)
975{
976 int mtyp = RESET_MSG;
977
978 if (l->state == LINK_ESTABLISHING)
979 mtyp = ACTIVATE_MSG;
980
981 tipc_link_build_proto_msg(l, mtyp, 0, 0, 0, 0, xmitq);
982}
983
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -0400984/* tipc_link_build_nack_msg: prepare link nack message for transmission
985 */
986static void tipc_link_build_nack_msg(struct tipc_link *l,
987 struct sk_buff_head *xmitq)
988{
989 u32 def_cnt = ++l->stats.deferred_recv;
990
Jon Paul Maloy52666982015-10-22 08:51:41 -0400991 if (link_is_bc_rcvlink(l))
992 return;
993
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -0400994 if ((skb_queue_len(&l->deferdq) == 1) || !(def_cnt % TIPC_NACK_INTV))
995 tipc_link_build_proto_msg(l, STATE_MSG, 0, 0, 0, 0, xmitq);
996}
997
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400998/* tipc_link_rcv - process TIPC packets/messages arriving from off-node
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -0400999 * @l: the link that should handle the message
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001000 * @skb: TIPC packet
1001 * @xmitq: queue to place packets to be sent after this call
1002 */
1003int tipc_link_rcv(struct tipc_link *l, struct sk_buff *skb,
1004 struct sk_buff_head *xmitq)
1005{
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001006 struct sk_buff_head *defq = &l->deferdq;
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001007 struct tipc_msg *hdr;
Jon Paul Maloy81204c42015-10-15 14:52:42 -04001008 u16 seqno, rcv_nxt, win_lim;
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001009 int rc = 0;
1010
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001011 do {
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001012 hdr = buf_msg(skb);
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001013 seqno = msg_seqno(hdr);
1014 rcv_nxt = l->rcv_nxt;
Jon Paul Maloy81204c42015-10-15 14:52:42 -04001015 win_lim = rcv_nxt + TIPC_MAX_LINK_WIN;
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001016
1017 /* Verify and update link state */
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001018 if (unlikely(msg_user(hdr) == LINK_PROTOCOL))
1019 return tipc_link_proto_rcv(l, skb, xmitq);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001020
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001021 if (unlikely(!link_is_up(l))) {
Jon Paul Maloy73f646c2015-10-15 14:52:44 -04001022 if (l->state == LINK_ESTABLISHING)
1023 rc = TIPC_LINK_UP_EVT;
1024 goto drop;
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001025 }
1026
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001027 /* Don't send probe at next timeout expiration */
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001028 l->silent_intv_cnt = 0;
1029
Jon Paul Maloy81204c42015-10-15 14:52:42 -04001030 /* Drop if outside receive window */
1031 if (unlikely(less(seqno, rcv_nxt) || more(seqno, win_lim))) {
1032 l->stats.duplicates++;
1033 goto drop;
1034 }
1035
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001036 /* Forward queues and wake up waiting users */
1037 if (likely(tipc_link_release_pkts(l, msg_ack(hdr)))) {
1038 tipc_link_advance_backlog(l, xmitq);
1039 if (unlikely(!skb_queue_empty(&l->wakeupq)))
1040 link_prepare_wakeup(l);
1041 }
1042
Jon Paul Maloy81204c42015-10-15 14:52:42 -04001043 /* Defer delivery if sequence gap */
1044 if (unlikely(seqno != rcv_nxt)) {
Jon Paul Maloy8306f992015-10-15 14:52:43 -04001045 __tipc_skb_queue_sorted(defq, seqno, skb);
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001046 tipc_link_build_nack_msg(l, xmitq);
1047 break;
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001048 }
1049
Jon Paul Maloy81204c42015-10-15 14:52:42 -04001050 /* Deliver packet */
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001051 l->rcv_nxt++;
1052 l->stats.recv_info++;
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001053 if (!tipc_data_input(l, skb, l->inputq))
Jon Paul Maloy52666982015-10-22 08:51:41 -04001054 rc |= tipc_link_input(l, skb, l->inputq);
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001055 if (unlikely(++l->rcv_unacked >= TIPC_MIN_LINK_WIN))
Jon Paul Maloy52666982015-10-22 08:51:41 -04001056 rc |= tipc_link_build_ack_msg(l, xmitq);
1057 if (unlikely(rc & ~TIPC_LINK_SND_BC_ACK))
1058 break;
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001059 } while ((skb = __skb_dequeue(defq)));
1060
1061 return rc;
1062drop:
1063 kfree_skb(skb);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001064 return rc;
1065}
1066
Allan Stephens8809b252011-10-25 10:44:35 -04001067/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001068 * Send protocol message to the other endpoint.
1069 */
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001070void tipc_link_proto_xmit(struct tipc_link *l, u32 msg_typ, int probe_msg,
Jon Paul Maloyed193ec2015-04-02 09:33:02 -04001071 u32 gap, u32 tolerance, u32 priority)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001072{
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001073 struct sk_buff *skb = NULL;
1074 struct sk_buff_head xmitq;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001075
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001076 __skb_queue_head_init(&xmitq);
1077 tipc_link_build_proto_msg(l, msg_typ, probe_msg, gap,
1078 tolerance, priority, &xmitq);
1079 skb = __skb_dequeue(&xmitq);
1080 if (!skb)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001081 return;
Jon Paul Maloyc72fa872015-10-22 08:51:46 -04001082 tipc_bearer_xmit_skb(l->net, l->bearer_id, skb, l->media_addr);
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001083 l->rcv_unacked = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001084}
1085
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001086static void tipc_link_build_proto_msg(struct tipc_link *l, int mtyp, bool probe,
1087 u16 rcvgap, int tolerance, int priority,
1088 struct sk_buff_head *xmitq)
1089{
1090 struct sk_buff *skb = NULL;
1091 struct tipc_msg *hdr = l->pmsg;
Jon Paul Maloy52666982015-10-22 08:51:41 -04001092 bool node_up = link_is_up(l->bc_rcvlink);
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001093
1094 /* Don't send protocol message during reset or link failover */
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001095 if (tipc_link_is_blocked(l))
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001096 return;
1097
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001098 msg_set_type(hdr, mtyp);
1099 msg_set_net_plane(hdr, l->net_plane);
Jon Paul Maloy52666982015-10-22 08:51:41 -04001100 msg_set_next_sent(hdr, l->snd_nxt);
1101 msg_set_ack(hdr, l->rcv_nxt - 1);
1102 msg_set_bcast_ack(hdr, l->bc_rcvlink->rcv_nxt - 1);
1103 msg_set_last_bcast(hdr, l->bc_sndlink->snd_nxt - 1);
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001104 msg_set_link_tolerance(hdr, tolerance);
1105 msg_set_linkprio(hdr, priority);
1106 msg_set_redundant_link(hdr, node_up);
1107 msg_set_seq_gap(hdr, 0);
1108
1109 /* Compatibility: created msg must not be in sequence with pkt flow */
Jon Paul Maloy52666982015-10-22 08:51:41 -04001110 msg_set_seqno(hdr, l->snd_nxt + U16_MAX / 2);
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001111
1112 if (mtyp == STATE_MSG) {
1113 if (!tipc_link_is_up(l))
1114 return;
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001115
1116 /* Override rcvgap if there are packets in deferred queue */
1117 if (!skb_queue_empty(&l->deferdq))
Jon Paul Maloy52666982015-10-22 08:51:41 -04001118 rcvgap = buf_seqno(skb_peek(&l->deferdq)) - l->rcv_nxt;
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001119 if (rcvgap) {
1120 msg_set_seq_gap(hdr, rcvgap);
1121 l->stats.sent_nacks++;
1122 }
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001123 msg_set_probe(hdr, probe);
1124 if (probe)
1125 l->stats.sent_probes++;
1126 l->stats.sent_states++;
Jon Paul Maloy52666982015-10-22 08:51:41 -04001127 l->rcv_unacked = 0;
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001128 } else {
1129 /* RESET_MSG or ACTIVATE_MSG */
1130 msg_set_max_pkt(hdr, l->advertised_mtu);
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001131 msg_set_ack(hdr, l->rcv_nxt - 1);
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001132 msg_set_next_sent(hdr, 1);
1133 }
1134 skb = tipc_buf_acquire(msg_size(hdr));
1135 if (!skb)
1136 return;
1137 skb_copy_to_linear_data(skb, hdr, msg_size(hdr));
1138 skb->priority = TC_PRIO_CONTROL;
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001139 __skb_queue_tail(xmitq, skb);
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001140}
Per Lidenb97bf3f2006-01-02 19:04:38 +01001141
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001142/* tipc_link_tnl_prepare(): prepare and return a list of tunnel packets
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001143 * with contents of the link's transmit and backlog queues.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001144 */
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001145void tipc_link_tnl_prepare(struct tipc_link *l, struct tipc_link *tnl,
1146 int mtyp, struct sk_buff_head *xmitq)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001147{
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001148 struct sk_buff *skb, *tnlskb;
1149 struct tipc_msg *hdr, tnlhdr;
1150 struct sk_buff_head *queue = &l->transmq;
1151 struct sk_buff_head tmpxq, tnlq;
1152 u16 pktlen, pktcnt, seqno = l->snd_nxt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001153
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001154 if (!tnl)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001155 return;
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001156
1157 skb_queue_head_init(&tnlq);
1158 skb_queue_head_init(&tmpxq);
1159
1160 /* At least one packet required for safe algorithm => add dummy */
1161 skb = tipc_msg_create(TIPC_LOW_IMPORTANCE, TIPC_DIRECT_MSG,
1162 BASIC_H_SIZE, 0, l->addr, link_own_addr(l),
1163 0, 0, TIPC_ERR_NO_PORT);
Ying Xuea6ca1092014-11-26 11:41:55 +08001164 if (!skb) {
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001165 pr_warn("%sunable to create tunnel packet\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001166 return;
Allan Stephens5392d642006-06-25 23:52:50 -07001167 }
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001168 skb_queue_tail(&tnlq, skb);
1169 tipc_link_xmit(l, &tnlq, &tmpxq);
1170 __skb_queue_purge(&tmpxq);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001171
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001172 /* Initialize reusable tunnel packet header */
1173 tipc_msg_init(link_own_addr(l), &tnlhdr, TUNNEL_PROTOCOL,
1174 mtyp, INT_H_SIZE, l->addr);
1175 pktcnt = skb_queue_len(&l->transmq) + skb_queue_len(&l->backlogq);
1176 msg_set_msgcnt(&tnlhdr, pktcnt);
1177 msg_set_bearer_id(&tnlhdr, l->peer_bearer_id);
1178tnl:
1179 /* Wrap each packet into a tunnel packet */
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -04001180 skb_queue_walk(queue, skb) {
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001181 hdr = buf_msg(skb);
1182 if (queue == &l->backlogq)
1183 msg_set_seqno(hdr, seqno++);
1184 pktlen = msg_size(hdr);
1185 msg_set_size(&tnlhdr, pktlen + INT_H_SIZE);
1186 tnlskb = tipc_buf_acquire(pktlen + INT_H_SIZE);
1187 if (!tnlskb) {
1188 pr_warn("%sunable to send packet\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001189 return;
1190 }
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001191 skb_copy_to_linear_data(tnlskb, &tnlhdr, INT_H_SIZE);
1192 skb_copy_to_linear_data_offset(tnlskb, INT_H_SIZE, hdr, pktlen);
1193 __skb_queue_tail(&tnlq, tnlskb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001194 }
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001195 if (queue != &l->backlogq) {
1196 queue = &l->backlogq;
1197 goto tnl;
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -04001198 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001199
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001200 tipc_link_xmit(tnl, &tnlq, xmitq);
Jon Paul Maloyf006c9c2014-02-13 17:29:11 -05001201
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001202 if (mtyp == FAILOVER_MSG) {
1203 tnl->drop_point = l->rcv_nxt;
1204 tnl->failover_reasm_skb = l->reasm_buf;
1205 l->reasm_buf = NULL;
Jon Paul Maloyf006c9c2014-02-13 17:29:11 -05001206 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001207}
1208
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001209/* tipc_link_proto_rcv(): receive link level protocol message :
1210 * Note that network plane id propagates through the network, and may
1211 * change at any time. The node with lowest numerical id determines
1212 * network plane
1213 */
1214static int tipc_link_proto_rcv(struct tipc_link *l, struct sk_buff *skb,
1215 struct sk_buff_head *xmitq)
1216{
1217 struct tipc_msg *hdr = buf_msg(skb);
1218 u16 rcvgap = 0;
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -04001219 u16 ack = msg_ack(hdr);
1220 u16 gap = msg_seq_gap(hdr);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001221 u16 peers_snd_nxt = msg_next_sent(hdr);
1222 u16 peers_tol = msg_link_tolerance(hdr);
1223 u16 peers_prio = msg_linkprio(hdr);
Jon Paul Maloy2be80c22015-08-20 02:12:56 -04001224 u16 rcv_nxt = l->rcv_nxt;
Jon Paul Maloy73f646c2015-10-15 14:52:44 -04001225 int mtyp = msg_type(hdr);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001226 char *if_name;
1227 int rc = 0;
1228
Jon Paul Maloy52666982015-10-22 08:51:41 -04001229 if (tipc_link_is_blocked(l) || !xmitq)
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001230 goto exit;
1231
1232 if (link_own_addr(l) > msg_prevnode(hdr))
1233 l->net_plane = msg_net_plane(hdr);
1234
Jon Paul Maloy73f646c2015-10-15 14:52:44 -04001235 switch (mtyp) {
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001236 case RESET_MSG:
1237
1238 /* Ignore duplicate RESET with old session number */
1239 if ((less_eq(msg_session(hdr), l->peer_session)) &&
1240 (l->peer_session != WILDCARD_SESSION))
1241 break;
1242 /* fall thru' */
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001243
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001244 case ACTIVATE_MSG:
Jon Paul Maloyc7cad0d2015-11-19 14:30:40 -05001245 skb_linearize(skb);
1246 hdr = buf_msg(skb);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001247
1248 /* Complete own link name with peer's interface name */
1249 if_name = strrchr(l->name, ':') + 1;
1250 if (sizeof(l->name) - (if_name - l->name) <= TIPC_MAX_IF_NAME)
1251 break;
1252 if (msg_data_sz(hdr) < TIPC_MAX_IF_NAME)
1253 break;
1254 strncpy(if_name, msg_data(hdr), TIPC_MAX_IF_NAME);
1255
1256 /* Update own tolerance if peer indicates a non-zero value */
1257 if (in_range(peers_tol, TIPC_MIN_LINK_TOL, TIPC_MAX_LINK_TOL))
1258 l->tolerance = peers_tol;
1259
1260 /* Update own priority if peer's priority is higher */
1261 if (in_range(peers_prio, l->priority + 1, TIPC_MAX_LINK_PRI))
1262 l->priority = peers_prio;
1263
Jon Paul Maloy73f646c2015-10-15 14:52:44 -04001264 /* ACTIVATE_MSG serves as PEER_RESET if link is already down */
1265 if ((mtyp == RESET_MSG) || !link_is_up(l))
1266 rc = tipc_link_fsm_evt(l, LINK_PEER_RESET_EVT);
1267
1268 /* ACTIVATE_MSG takes up link if it was already locally reset */
1269 if ((mtyp == ACTIVATE_MSG) && (l->state == LINK_ESTABLISHING))
1270 rc = TIPC_LINK_UP_EVT;
1271
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001272 l->peer_session = msg_session(hdr);
1273 l->peer_bearer_id = msg_bearer_id(hdr);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001274 if (l->mtu > msg_max_pkt(hdr))
1275 l->mtu = msg_max_pkt(hdr);
1276 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001277
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001278 case STATE_MSG:
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001279
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001280 /* Update own tolerance if peer indicates a non-zero value */
1281 if (in_range(peers_tol, TIPC_MIN_LINK_TOL, TIPC_MAX_LINK_TOL))
1282 l->tolerance = peers_tol;
1283
1284 l->silent_intv_cnt = 0;
1285 l->stats.recv_states++;
1286 if (msg_probe(hdr))
1287 l->stats.recv_probes++;
Jon Paul Maloy73f646c2015-10-15 14:52:44 -04001288
1289 if (!link_is_up(l)) {
1290 if (l->state == LINK_ESTABLISHING)
1291 rc = TIPC_LINK_UP_EVT;
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001292 break;
Jon Paul Maloy73f646c2015-10-15 14:52:44 -04001293 }
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001294
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001295 /* Send NACK if peer has sent pkts we haven't received yet */
Jon Paul Maloy2be80c22015-08-20 02:12:56 -04001296 if (more(peers_snd_nxt, rcv_nxt) && !tipc_link_is_synching(l))
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001297 rcvgap = peers_snd_nxt - l->rcv_nxt;
1298 if (rcvgap || (msg_probe(hdr)))
1299 tipc_link_build_proto_msg(l, STATE_MSG, 0, rcvgap,
Jon Paul Maloy16040892015-07-21 06:42:28 -04001300 0, 0, xmitq);
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -04001301 tipc_link_release_pkts(l, ack);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001302
1303 /* If NACK, retransmit will now start at right position */
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -04001304 if (gap) {
1305 rc = tipc_link_retrans(l, ack + 1, ack + gap, xmitq);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001306 l->stats.recv_nacks++;
1307 }
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001308
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001309 tipc_link_advance_backlog(l, xmitq);
1310 if (unlikely(!skb_queue_empty(&l->wakeupq)))
1311 link_prepare_wakeup(l);
1312 }
1313exit:
1314 kfree_skb(skb);
1315 return rc;
1316}
1317
Jon Paul Maloy52666982015-10-22 08:51:41 -04001318/* tipc_link_build_bc_proto_msg() - create broadcast protocol message
1319 */
1320static bool tipc_link_build_bc_proto_msg(struct tipc_link *l, bool bcast,
1321 u16 peers_snd_nxt,
1322 struct sk_buff_head *xmitq)
1323{
1324 struct sk_buff *skb;
1325 struct tipc_msg *hdr;
1326 struct sk_buff *dfrd_skb = skb_peek(&l->deferdq);
1327 u16 ack = l->rcv_nxt - 1;
1328 u16 gap_to = peers_snd_nxt - 1;
1329
1330 skb = tipc_msg_create(BCAST_PROTOCOL, STATE_MSG, INT_H_SIZE,
1331 0, l->addr, link_own_addr(l), 0, 0, 0);
1332 if (!skb)
1333 return false;
1334 hdr = buf_msg(skb);
1335 msg_set_last_bcast(hdr, l->bc_sndlink->snd_nxt - 1);
1336 msg_set_bcast_ack(hdr, ack);
1337 msg_set_bcgap_after(hdr, ack);
1338 if (dfrd_skb)
1339 gap_to = buf_seqno(dfrd_skb) - 1;
1340 msg_set_bcgap_to(hdr, gap_to);
1341 msg_set_non_seq(hdr, bcast);
1342 __skb_queue_tail(xmitq, skb);
1343 return true;
1344}
1345
1346/* tipc_link_build_bc_init_msg() - synchronize broadcast link endpoints.
1347 *
1348 * Give a newly added peer node the sequence number where it should
1349 * start receiving and acking broadcast packets.
1350 */
Wu Fengguang742e0382015-10-24 22:56:01 +08001351static void tipc_link_build_bc_init_msg(struct tipc_link *l,
1352 struct sk_buff_head *xmitq)
Jon Paul Maloy52666982015-10-22 08:51:41 -04001353{
1354 struct sk_buff_head list;
1355
1356 __skb_queue_head_init(&list);
1357 if (!tipc_link_build_bc_proto_msg(l->bc_rcvlink, false, 0, &list))
1358 return;
1359 tipc_link_xmit(l, &list, xmitq);
1360}
1361
1362/* tipc_link_bc_init_rcv - receive initial broadcast synch data from peer
1363 */
1364void tipc_link_bc_init_rcv(struct tipc_link *l, struct tipc_msg *hdr)
1365{
1366 int mtyp = msg_type(hdr);
1367 u16 peers_snd_nxt = msg_bc_snd_nxt(hdr);
1368
1369 if (link_is_up(l))
1370 return;
1371
1372 if (msg_user(hdr) == BCAST_PROTOCOL) {
1373 l->rcv_nxt = peers_snd_nxt;
1374 l->state = LINK_ESTABLISHED;
1375 return;
1376 }
1377
1378 if (l->peer_caps & TIPC_BCAST_SYNCH)
1379 return;
1380
1381 if (msg_peer_node_is_up(hdr))
1382 return;
1383
1384 /* Compatibility: accept older, less safe initial synch data */
1385 if ((mtyp == RESET_MSG) || (mtyp == ACTIVATE_MSG))
1386 l->rcv_nxt = peers_snd_nxt;
1387}
1388
1389/* tipc_link_bc_sync_rcv - update rcv link according to peer's send state
1390 */
1391void tipc_link_bc_sync_rcv(struct tipc_link *l, struct tipc_msg *hdr,
1392 struct sk_buff_head *xmitq)
1393{
1394 u16 peers_snd_nxt = msg_bc_snd_nxt(hdr);
1395
1396 if (!link_is_up(l))
1397 return;
1398
1399 if (!msg_peer_node_is_up(hdr))
1400 return;
1401
1402 l->bc_peer_is_up = true;
1403
1404 /* Ignore if peers_snd_nxt goes beyond receive window */
1405 if (more(peers_snd_nxt, l->rcv_nxt + l->window))
1406 return;
1407
1408 if (!more(peers_snd_nxt, l->rcv_nxt)) {
1409 l->nack_state = BC_NACK_SND_CONDITIONAL;
1410 return;
1411 }
1412
1413 /* Don't NACK if one was recently sent or peeked */
1414 if (l->nack_state == BC_NACK_SND_SUPPRESS) {
1415 l->nack_state = BC_NACK_SND_UNCONDITIONAL;
1416 return;
1417 }
1418
1419 /* Conditionally delay NACK sending until next synch rcv */
1420 if (l->nack_state == BC_NACK_SND_CONDITIONAL) {
1421 l->nack_state = BC_NACK_SND_UNCONDITIONAL;
1422 if ((peers_snd_nxt - l->rcv_nxt) < TIPC_MIN_LINK_WIN)
1423 return;
1424 }
1425
1426 /* Send NACK now but suppress next one */
1427 tipc_link_build_bc_proto_msg(l, true, peers_snd_nxt, xmitq);
1428 l->nack_state = BC_NACK_SND_SUPPRESS;
1429}
1430
1431void tipc_link_bc_ack_rcv(struct tipc_link *l, u16 acked,
1432 struct sk_buff_head *xmitq)
1433{
1434 struct sk_buff *skb, *tmp;
1435 struct tipc_link *snd_l = l->bc_sndlink;
1436
1437 if (!link_is_up(l) || !l->bc_peer_is_up)
1438 return;
1439
1440 if (!more(acked, l->acked))
1441 return;
1442
1443 /* Skip over packets peer has already acked */
1444 skb_queue_walk(&snd_l->transmq, skb) {
1445 if (more(buf_seqno(skb), l->acked))
1446 break;
1447 }
1448
1449 /* Update/release the packets peer is acking now */
1450 skb_queue_walk_from_safe(&snd_l->transmq, skb, tmp) {
1451 if (more(buf_seqno(skb), acked))
1452 break;
1453 if (!--TIPC_SKB_CB(skb)->ackers) {
1454 __skb_unlink(skb, &snd_l->transmq);
1455 kfree_skb(skb);
1456 }
1457 }
1458 l->acked = acked;
1459 tipc_link_advance_backlog(snd_l, xmitq);
1460 if (unlikely(!skb_queue_empty(&snd_l->wakeupq)))
1461 link_prepare_wakeup(snd_l);
1462}
1463
1464/* tipc_link_bc_nack_rcv(): receive broadcast nack message
1465 */
1466int tipc_link_bc_nack_rcv(struct tipc_link *l, struct sk_buff *skb,
1467 struct sk_buff_head *xmitq)
1468{
1469 struct tipc_msg *hdr = buf_msg(skb);
1470 u32 dnode = msg_destnode(hdr);
1471 int mtyp = msg_type(hdr);
1472 u16 acked = msg_bcast_ack(hdr);
1473 u16 from = acked + 1;
1474 u16 to = msg_bcgap_to(hdr);
1475 u16 peers_snd_nxt = to + 1;
1476 int rc = 0;
1477
1478 kfree_skb(skb);
1479
1480 if (!tipc_link_is_up(l) || !l->bc_peer_is_up)
1481 return 0;
1482
1483 if (mtyp != STATE_MSG)
1484 return 0;
1485
1486 if (dnode == link_own_addr(l)) {
1487 tipc_link_bc_ack_rcv(l, acked, xmitq);
1488 rc = tipc_link_retrans(l->bc_sndlink, from, to, xmitq);
1489 l->stats.recv_nacks++;
1490 return rc;
1491 }
1492
1493 /* Msg for other node => suppress own NACK at next sync if applicable */
1494 if (more(peers_snd_nxt, l->rcv_nxt) && !less(l->rcv_nxt, from))
1495 l->nack_state = BC_NACK_SND_SUPPRESS;
1496
1497 return 0;
1498}
1499
Jon Paul Maloye3eea1e2015-03-13 16:08:11 -04001500void tipc_link_set_queue_limits(struct tipc_link *l, u32 win)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001501{
Jon Paul Maloyed193ec2015-04-02 09:33:02 -04001502 int max_bulk = TIPC_MAX_PUBLICATIONS / (l->mtu / ITEM_SIZE);
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -04001503
Jon Paul Maloye3eea1e2015-03-13 16:08:11 -04001504 l->window = win;
Jon Paul Maloy1f66d162015-03-25 12:07:24 -04001505 l->backlog[TIPC_LOW_IMPORTANCE].limit = win / 2;
1506 l->backlog[TIPC_MEDIUM_IMPORTANCE].limit = win;
1507 l->backlog[TIPC_HIGH_IMPORTANCE].limit = win / 2 * 3;
1508 l->backlog[TIPC_CRITICAL_IMPORTANCE].limit = win * 2;
1509 l->backlog[TIPC_SYSTEM_IMPORTANCE].limit = max_bulk;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001510}
1511
Allan Stephens5c216e12011-10-18 11:34:29 -04001512/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001513 * link_reset_statistics - reset link statistics
1514 * @l_ptr: pointer to link
1515 */
Jon Paul Maloy5be9c082015-11-19 14:30:45 -05001516void link_reset_statistics(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001517{
1518 memset(&l_ptr->stats, 0, sizeof(l_ptr->stats));
Jon Paul Maloya97b9d32015-05-14 10:46:15 -04001519 l_ptr->stats.sent_info = l_ptr->snd_nxt;
1520 l_ptr->stats.recv_info = l_ptr->rcv_nxt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001521}
1522
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -04001523static void link_print(struct tipc_link *l, const char *str)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001524{
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -04001525 struct sk_buff *hskb = skb_peek(&l->transmq);
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -04001526 u16 head = hskb ? msg_seqno(buf_msg(hskb)) : l->snd_nxt - 1;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -04001527 u16 tail = l->snd_nxt - 1;
Ying Xue7a2f7d12014-04-21 10:55:46 +08001528
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001529 pr_info("%s Link <%s> state %x\n", str, l->name, l->state);
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -04001530 pr_info("XMTQ: %u [%u-%u], BKLGQ: %u, SNDNX: %u, RCVNX: %u\n",
1531 skb_queue_len(&l->transmq), head, tail,
1532 skb_queue_len(&l->backlogq), l->snd_nxt, l->rcv_nxt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001533}
Richard Alpe0655f6a2014-11-20 10:29:07 +01001534
1535/* Parse and validate nested (link) properties valid for media, bearer and link
1536 */
1537int tipc_nl_parse_link_prop(struct nlattr *prop, struct nlattr *props[])
1538{
1539 int err;
1540
1541 err = nla_parse_nested(props, TIPC_NLA_PROP_MAX, prop,
1542 tipc_nl_prop_policy);
1543 if (err)
1544 return err;
1545
1546 if (props[TIPC_NLA_PROP_PRIO]) {
1547 u32 prio;
1548
1549 prio = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
1550 if (prio > TIPC_MAX_LINK_PRI)
1551 return -EINVAL;
1552 }
1553
1554 if (props[TIPC_NLA_PROP_TOL]) {
1555 u32 tol;
1556
1557 tol = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
1558 if ((tol < TIPC_MIN_LINK_TOL) || (tol > TIPC_MAX_LINK_TOL))
1559 return -EINVAL;
1560 }
1561
1562 if (props[TIPC_NLA_PROP_WIN]) {
1563 u32 win;
1564
1565 win = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
1566 if ((win < TIPC_MIN_LINK_WIN) || (win > TIPC_MAX_LINK_WIN))
1567 return -EINVAL;
1568 }
1569
1570 return 0;
1571}
Richard Alpe7be57fc2014-11-20 10:29:12 +01001572
Richard Alped8182802014-11-24 11:10:29 +01001573static int __tipc_nl_add_stats(struct sk_buff *skb, struct tipc_stats *s)
Richard Alpe7be57fc2014-11-20 10:29:12 +01001574{
1575 int i;
1576 struct nlattr *stats;
1577
1578 struct nla_map {
1579 u32 key;
1580 u32 val;
1581 };
1582
1583 struct nla_map map[] = {
1584 {TIPC_NLA_STATS_RX_INFO, s->recv_info},
1585 {TIPC_NLA_STATS_RX_FRAGMENTS, s->recv_fragments},
1586 {TIPC_NLA_STATS_RX_FRAGMENTED, s->recv_fragmented},
1587 {TIPC_NLA_STATS_RX_BUNDLES, s->recv_bundles},
1588 {TIPC_NLA_STATS_RX_BUNDLED, s->recv_bundled},
1589 {TIPC_NLA_STATS_TX_INFO, s->sent_info},
1590 {TIPC_NLA_STATS_TX_FRAGMENTS, s->sent_fragments},
1591 {TIPC_NLA_STATS_TX_FRAGMENTED, s->sent_fragmented},
1592 {TIPC_NLA_STATS_TX_BUNDLES, s->sent_bundles},
1593 {TIPC_NLA_STATS_TX_BUNDLED, s->sent_bundled},
1594 {TIPC_NLA_STATS_MSG_PROF_TOT, (s->msg_length_counts) ?
1595 s->msg_length_counts : 1},
1596 {TIPC_NLA_STATS_MSG_LEN_CNT, s->msg_length_counts},
1597 {TIPC_NLA_STATS_MSG_LEN_TOT, s->msg_lengths_total},
1598 {TIPC_NLA_STATS_MSG_LEN_P0, s->msg_length_profile[0]},
1599 {TIPC_NLA_STATS_MSG_LEN_P1, s->msg_length_profile[1]},
1600 {TIPC_NLA_STATS_MSG_LEN_P2, s->msg_length_profile[2]},
1601 {TIPC_NLA_STATS_MSG_LEN_P3, s->msg_length_profile[3]},
1602 {TIPC_NLA_STATS_MSG_LEN_P4, s->msg_length_profile[4]},
1603 {TIPC_NLA_STATS_MSG_LEN_P5, s->msg_length_profile[5]},
1604 {TIPC_NLA_STATS_MSG_LEN_P6, s->msg_length_profile[6]},
1605 {TIPC_NLA_STATS_RX_STATES, s->recv_states},
1606 {TIPC_NLA_STATS_RX_PROBES, s->recv_probes},
1607 {TIPC_NLA_STATS_RX_NACKS, s->recv_nacks},
1608 {TIPC_NLA_STATS_RX_DEFERRED, s->deferred_recv},
1609 {TIPC_NLA_STATS_TX_STATES, s->sent_states},
1610 {TIPC_NLA_STATS_TX_PROBES, s->sent_probes},
1611 {TIPC_NLA_STATS_TX_NACKS, s->sent_nacks},
1612 {TIPC_NLA_STATS_TX_ACKS, s->sent_acks},
1613 {TIPC_NLA_STATS_RETRANSMITTED, s->retransmitted},
1614 {TIPC_NLA_STATS_DUPLICATES, s->duplicates},
1615 {TIPC_NLA_STATS_LINK_CONGS, s->link_congs},
1616 {TIPC_NLA_STATS_MAX_QUEUE, s->max_queue_sz},
1617 {TIPC_NLA_STATS_AVG_QUEUE, s->queue_sz_counts ?
1618 (s->accu_queue_sz / s->queue_sz_counts) : 0}
1619 };
1620
1621 stats = nla_nest_start(skb, TIPC_NLA_LINK_STATS);
1622 if (!stats)
1623 return -EMSGSIZE;
1624
1625 for (i = 0; i < ARRAY_SIZE(map); i++)
1626 if (nla_put_u32(skb, map[i].key, map[i].val))
1627 goto msg_full;
1628
1629 nla_nest_end(skb, stats);
1630
1631 return 0;
1632msg_full:
1633 nla_nest_cancel(skb, stats);
1634
1635 return -EMSGSIZE;
1636}
1637
1638/* Caller should hold appropriate locks to protect the link */
Jon Paul Maloy5be9c082015-11-19 14:30:45 -05001639int __tipc_nl_add_link(struct net *net, struct tipc_nl_msg *msg,
1640 struct tipc_link *link, int nlflags)
Richard Alpe7be57fc2014-11-20 10:29:12 +01001641{
1642 int err;
1643 void *hdr;
1644 struct nlattr *attrs;
1645 struct nlattr *prop;
Ying Xue34747532015-01-09 15:27:10 +08001646 struct tipc_net *tn = net_generic(net, tipc_net_id);
Richard Alpe7be57fc2014-11-20 10:29:12 +01001647
Richard Alpebfb3e5d2015-02-09 09:50:03 +01001648 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
Nicolas Dichtelf2f67392015-04-28 18:33:50 +02001649 nlflags, TIPC_NL_LINK_GET);
Richard Alpe7be57fc2014-11-20 10:29:12 +01001650 if (!hdr)
1651 return -EMSGSIZE;
1652
1653 attrs = nla_nest_start(msg->skb, TIPC_NLA_LINK);
1654 if (!attrs)
1655 goto msg_full;
1656
1657 if (nla_put_string(msg->skb, TIPC_NLA_LINK_NAME, link->name))
1658 goto attr_msg_full;
1659 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_DEST,
Ying Xue34747532015-01-09 15:27:10 +08001660 tipc_cluster_mask(tn->own_addr)))
Richard Alpe7be57fc2014-11-20 10:29:12 +01001661 goto attr_msg_full;
Jon Paul Maloyed193ec2015-04-02 09:33:02 -04001662 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_MTU, link->mtu))
Richard Alpe7be57fc2014-11-20 10:29:12 +01001663 goto attr_msg_full;
Jon Paul Maloya97b9d32015-05-14 10:46:15 -04001664 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_RX, link->rcv_nxt))
Richard Alpe7be57fc2014-11-20 10:29:12 +01001665 goto attr_msg_full;
Jon Paul Maloya97b9d32015-05-14 10:46:15 -04001666 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_TX, link->snd_nxt))
Richard Alpe7be57fc2014-11-20 10:29:12 +01001667 goto attr_msg_full;
1668
1669 if (tipc_link_is_up(link))
1670 if (nla_put_flag(msg->skb, TIPC_NLA_LINK_UP))
1671 goto attr_msg_full;
Jon Paul Maloyc72fa872015-10-22 08:51:46 -04001672 if (link->active)
Richard Alpe7be57fc2014-11-20 10:29:12 +01001673 if (nla_put_flag(msg->skb, TIPC_NLA_LINK_ACTIVE))
1674 goto attr_msg_full;
1675
1676 prop = nla_nest_start(msg->skb, TIPC_NLA_LINK_PROP);
1677 if (!prop)
1678 goto attr_msg_full;
1679 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, link->priority))
1680 goto prop_msg_full;
1681 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_TOL, link->tolerance))
1682 goto prop_msg_full;
1683 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN,
Jon Paul Maloy1f66d162015-03-25 12:07:24 -04001684 link->window))
Richard Alpe7be57fc2014-11-20 10:29:12 +01001685 goto prop_msg_full;
1686 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, link->priority))
1687 goto prop_msg_full;
1688 nla_nest_end(msg->skb, prop);
1689
1690 err = __tipc_nl_add_stats(msg->skb, &link->stats);
1691 if (err)
1692 goto attr_msg_full;
1693
1694 nla_nest_end(msg->skb, attrs);
1695 genlmsg_end(msg->skb, hdr);
1696
1697 return 0;
1698
1699prop_msg_full:
1700 nla_nest_cancel(msg->skb, prop);
1701attr_msg_full:
1702 nla_nest_cancel(msg->skb, attrs);
1703msg_full:
1704 genlmsg_cancel(msg->skb, hdr);
1705
1706 return -EMSGSIZE;
1707}