blob: b11afe71dfc18b9e643e0f00672b1977424581ec [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
Jon Paul Maloy38206d52015-11-19 14:30:46 -050048struct tipc_stats {
49 u32 sent_info; /* used in counting # sent packets */
50 u32 recv_info; /* used in counting # recv'd packets */
51 u32 sent_states;
52 u32 recv_states;
53 u32 sent_probes;
54 u32 recv_probes;
55 u32 sent_nacks;
56 u32 recv_nacks;
57 u32 sent_acks;
58 u32 sent_bundled;
59 u32 sent_bundles;
60 u32 recv_bundled;
61 u32 recv_bundles;
62 u32 retransmitted;
63 u32 sent_fragmented;
64 u32 sent_fragments;
65 u32 recv_fragmented;
66 u32 recv_fragments;
67 u32 link_congs; /* # port sends blocked by congestion */
68 u32 deferred_recv;
69 u32 duplicates;
70 u32 max_queue_sz; /* send queue size high water mark */
71 u32 accu_queue_sz; /* used for send queue size profiling */
72 u32 queue_sz_counts; /* used for send queue size profiling */
73 u32 msg_length_counts; /* used for message length profiling */
74 u32 msg_lengths_total; /* used for message length profiling */
75 u32 msg_length_profile[7]; /* used for msg. length profiling */
76};
77
78/**
79 * struct tipc_link - TIPC link data structure
80 * @addr: network address of link's peer node
81 * @name: link name character string
82 * @media_addr: media address to use when sending messages over link
83 * @timer: link timer
84 * @net: pointer to namespace struct
85 * @refcnt: reference counter for permanent references (owner node & timer)
86 * @peer_session: link session # being used by peer end of link
87 * @peer_bearer_id: bearer id used by link's peer endpoint
88 * @bearer_id: local bearer id used by link
89 * @tolerance: minimum link continuity loss needed to reset link [in ms]
90 * @keepalive_intv: link keepalive timer interval
91 * @abort_limit: # of unacknowledged continuity probes needed to reset link
92 * @state: current state of link FSM
93 * @peer_caps: bitmap describing capabilities of peer node
94 * @silent_intv_cnt: # of timer intervals without any reception from peer
95 * @proto_msg: template for control messages generated by link
96 * @pmsg: convenience pointer to "proto_msg" field
97 * @priority: current link priority
98 * @net_plane: current link network plane ('A' through 'H')
99 * @backlog_limit: backlog queue congestion thresholds (indexed by importance)
100 * @exp_msg_count: # of tunnelled messages expected during link changeover
101 * @reset_rcv_checkpt: seq # of last acknowledged message at time of link reset
102 * @mtu: current maximum packet size for this link
103 * @advertised_mtu: advertised own mtu when link is being established
104 * @transmitq: queue for sent, non-acked messages
105 * @backlogq: queue for messages waiting to be sent
106 * @snt_nxt: next sequence number to use for outbound messages
107 * @last_retransmitted: sequence number of most recently retransmitted message
108 * @stale_count: # of identical retransmit requests made by peer
109 * @ackers: # of peers that needs to ack each packet before it can be released
110 * @acked: # last packet acked by a certain peer. Used for broadcast.
111 * @rcv_nxt: next sequence number to expect for inbound messages
112 * @deferred_queue: deferred queue saved OOS b'cast message received from node
113 * @unacked_window: # of inbound messages rx'd without ack'ing back to peer
114 * @inputq: buffer queue for messages to be delivered upwards
115 * @namedq: buffer queue for name table messages to be delivered upwards
116 * @next_out: ptr to first unsent outbound message in queue
117 * @wakeupq: linked list of wakeup msgs waiting for link congestion to abate
118 * @long_msg_seq_no: next identifier to use for outbound fragmented messages
119 * @reasm_buf: head of partially reassembled inbound message fragments
120 * @bc_rcvr: marks that this is a broadcast receiver link
121 * @stats: collects statistics regarding link activity
122 */
123struct tipc_link {
124 u32 addr;
125 char name[TIPC_MAX_LINK_NAME];
126 struct tipc_media_addr *media_addr;
127 struct net *net;
128
129 /* Management and link supervision data */
130 u32 peer_session;
131 u32 peer_bearer_id;
132 u32 bearer_id;
133 u32 tolerance;
134 unsigned long keepalive_intv;
135 u32 abort_limit;
136 u32 state;
137 u16 peer_caps;
138 bool active;
139 u32 silent_intv_cnt;
140 struct {
141 unchar hdr[INT_H_SIZE];
142 unchar body[TIPC_MAX_IF_NAME];
143 } proto_msg;
144 struct tipc_msg *pmsg;
145 u32 priority;
146 char net_plane;
147
148 /* Failover/synch */
149 u16 drop_point;
150 struct sk_buff *failover_reasm_skb;
151
152 /* Max packet negotiation */
153 u16 mtu;
154 u16 advertised_mtu;
155
156 /* Sending */
157 struct sk_buff_head transmq;
158 struct sk_buff_head backlogq;
159 struct {
160 u16 len;
161 u16 limit;
162 } backlog[5];
163 u16 snd_nxt;
164 u16 last_retransm;
165 u16 window;
166 u32 stale_count;
167
168 /* Reception */
169 u16 rcv_nxt;
170 u32 rcv_unacked;
171 struct sk_buff_head deferdq;
172 struct sk_buff_head *inputq;
173 struct sk_buff_head *namedq;
174
175 /* Congestion handling */
176 struct sk_buff_head wakeupq;
177
178 /* Fragmentation/reassembly */
179 struct sk_buff *reasm_buf;
180
181 /* Broadcast */
182 u16 ackers;
183 u16 acked;
184 struct tipc_link *bc_rcvlink;
185 struct tipc_link *bc_sndlink;
186 int nack_state;
187 bool bc_peer_is_up;
188
189 /* Statistics */
190 struct tipc_stats stats;
191};
192
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400193/*
194 * Error message prefixes
195 */
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400196static const char *link_co_err = "Link tunneling error, ";
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400197static const char *link_rst_msg = "Resetting link ";
Richard Alpe7be57fc2014-11-20 10:29:12 +0100198
Richard Alpe0655f6a2014-11-20 10:29:07 +0100199/* Properties valid for media, bearar and link */
200static const struct nla_policy tipc_nl_prop_policy[TIPC_NLA_PROP_MAX + 1] = {
201 [TIPC_NLA_PROP_UNSPEC] = { .type = NLA_UNSPEC },
202 [TIPC_NLA_PROP_PRIO] = { .type = NLA_U32 },
203 [TIPC_NLA_PROP_TOL] = { .type = NLA_U32 },
204 [TIPC_NLA_PROP_WIN] = { .type = NLA_U32 }
205};
206
Jon Paul Maloy52666982015-10-22 08:51:41 -0400207/* Send states for broadcast NACKs
208 */
209enum {
210 BC_NACK_SND_CONDITIONAL,
211 BC_NACK_SND_UNCONDITIONAL,
212 BC_NACK_SND_SUPPRESS,
213};
214
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900215/*
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400216 * Interval between NACKs when packets arrive out of order
217 */
218#define TIPC_NACK_INTV (TIPC_MIN_LINK_WIN * 2)
219/*
Allan Stephensa686e682008-06-04 17:29:39 -0700220 * Out-of-range value for link session numbers
221 */
Jon Paul Maloyd3504c32015-07-16 16:54:25 -0400222#define WILDCARD_SESSION 0x10000
Allan Stephensa686e682008-06-04 17:29:39 -0700223
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400224/* Link FSM states:
Jon Paul Maloyd3504c32015-07-16 16:54:25 -0400225 */
226enum {
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400227 LINK_ESTABLISHED = 0xe,
228 LINK_ESTABLISHING = 0xe << 4,
229 LINK_RESET = 0x1 << 8,
230 LINK_RESETTING = 0x2 << 12,
231 LINK_PEER_RESET = 0xd << 16,
232 LINK_FAILINGOVER = 0xf << 20,
233 LINK_SYNCHING = 0xc << 24
Jon Paul Maloyd3504c32015-07-16 16:54:25 -0400234};
235
236/* Link FSM state checking routines
237 */
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400238static int link_is_up(struct tipc_link *l)
Jon Paul Maloyd3504c32015-07-16 16:54:25 -0400239{
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400240 return l->state & (LINK_ESTABLISHED | LINK_SYNCHING);
Jon Paul Maloyd3504c32015-07-16 16:54:25 -0400241}
242
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400243static int tipc_link_proto_rcv(struct tipc_link *l, struct sk_buff *skb,
244 struct sk_buff_head *xmitq);
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -0400245static void tipc_link_build_proto_msg(struct tipc_link *l, int mtyp, bool probe,
246 u16 rcvgap, int tolerance, int priority,
247 struct sk_buff_head *xmitq);
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500248static void link_print(struct tipc_link *l, const char *str);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400249static void tipc_link_build_nack_msg(struct tipc_link *l,
250 struct sk_buff_head *xmitq);
251static void tipc_link_build_bc_init_msg(struct tipc_link *l,
252 struct sk_buff_head *xmitq);
253static bool tipc_link_release_pkts(struct tipc_link *l, u16 to);
Jon Paul Maloy8b4ed862015-03-25 12:07:26 -0400254
Per Lidenb97bf3f2006-01-02 19:04:38 +0100255/*
Sam Ravnborg05790c62006-03-20 22:37:04 -0800256 * Simple non-static link routines (i.e. referenced outside this file)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100257 */
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400258bool tipc_link_is_up(struct tipc_link *l)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100259{
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400260 return link_is_up(l);
261}
262
Jon Paul Maloyc8199302015-10-15 14:52:46 -0400263bool tipc_link_peer_is_down(struct tipc_link *l)
264{
265 return l->state == LINK_PEER_RESET;
266}
267
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400268bool tipc_link_is_reset(struct tipc_link *l)
269{
270 return l->state & (LINK_RESET | LINK_FAILINGOVER | LINK_ESTABLISHING);
271}
272
Jon Paul Maloy73f646c2015-10-15 14:52:44 -0400273bool tipc_link_is_establishing(struct tipc_link *l)
274{
275 return l->state == LINK_ESTABLISHING;
276}
277
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400278bool tipc_link_is_synching(struct tipc_link *l)
279{
280 return l->state == LINK_SYNCHING;
281}
282
283bool tipc_link_is_failingover(struct tipc_link *l)
284{
285 return l->state == LINK_FAILINGOVER;
286}
287
288bool tipc_link_is_blocked(struct tipc_link *l)
289{
290 return l->state & (LINK_RESETTING | LINK_PEER_RESET | LINK_FAILINGOVER);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100291}
292
Wu Fengguang742e0382015-10-24 22:56:01 +0800293static bool link_is_bc_sndlink(struct tipc_link *l)
Jon Paul Maloy52666982015-10-22 08:51:41 -0400294{
295 return !l->bc_sndlink;
296}
297
Wu Fengguang742e0382015-10-24 22:56:01 +0800298static bool link_is_bc_rcvlink(struct tipc_link *l)
Jon Paul Maloy52666982015-10-22 08:51:41 -0400299{
300 return ((l->bc_rcvlink == l) && !link_is_bc_sndlink(l));
301}
302
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400303int tipc_link_is_active(struct tipc_link *l)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100304{
Jon Paul Maloyc72fa872015-10-22 08:51:46 -0400305 return l->active;
306}
Jon Paul Maloy9d13ec62015-07-16 16:54:19 -0400307
Jon Paul Maloyc72fa872015-10-22 08:51:46 -0400308void tipc_link_set_active(struct tipc_link *l, bool active)
309{
310 l->active = active;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100311}
312
Jon Paul Maloy38206d52015-11-19 14:30:46 -0500313u32 tipc_link_id(struct tipc_link *l)
314{
315 return l->peer_bearer_id << 16 | l->bearer_id;
316}
317
318int tipc_link_window(struct tipc_link *l)
319{
320 return l->window;
321}
322
323int tipc_link_prio(struct tipc_link *l)
324{
325 return l->priority;
326}
327
328unsigned long tipc_link_tolerance(struct tipc_link *l)
329{
330 return l->tolerance;
331}
332
333struct sk_buff_head *tipc_link_inputq(struct tipc_link *l)
334{
335 return l->inputq;
336}
337
338char tipc_link_plane(struct tipc_link *l)
339{
340 return l->net_plane;
341}
342
Jon Paul Maloy52666982015-10-22 08:51:41 -0400343void tipc_link_add_bc_peer(struct tipc_link *snd_l,
344 struct tipc_link *uc_l,
345 struct sk_buff_head *xmitq)
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400346{
Jon Paul Maloy52666982015-10-22 08:51:41 -0400347 struct tipc_link *rcv_l = uc_l->bc_rcvlink;
348
349 snd_l->ackers++;
350 rcv_l->acked = snd_l->snd_nxt - 1;
351 tipc_link_build_bc_init_msg(uc_l, xmitq);
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400352}
353
Jon Paul Maloy52666982015-10-22 08:51:41 -0400354void tipc_link_remove_bc_peer(struct tipc_link *snd_l,
355 struct tipc_link *rcv_l,
356 struct sk_buff_head *xmitq)
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400357{
Jon Paul Maloy52666982015-10-22 08:51:41 -0400358 u16 ack = snd_l->snd_nxt - 1;
359
360 snd_l->ackers--;
361 tipc_link_bc_ack_rcv(rcv_l, ack, xmitq);
362 tipc_link_reset(rcv_l);
363 rcv_l->state = LINK_RESET;
364 if (!snd_l->ackers) {
365 tipc_link_reset(snd_l);
366 __skb_queue_purge(xmitq);
367 }
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400368}
369
370int tipc_link_bc_peers(struct tipc_link *l)
371{
372 return l->ackers;
373}
374
Jon Paul Maloy959e1782015-10-22 08:51:43 -0400375void tipc_link_set_mtu(struct tipc_link *l, int mtu)
376{
377 l->mtu = mtu;
378}
379
380int tipc_link_mtu(struct tipc_link *l)
381{
382 return l->mtu;
383}
384
Jon Paul Maloy38206d52015-11-19 14:30:46 -0500385u16 tipc_link_rcv_nxt(struct tipc_link *l)
386{
387 return l->rcv_nxt;
388}
389
390u16 tipc_link_acked(struct tipc_link *l)
391{
392 return l->acked;
393}
394
395char *tipc_link_name(struct tipc_link *l)
396{
397 return l->name;
398}
399
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400400static u32 link_own_addr(struct tipc_link *l)
401{
402 return msg_prevnode(l->pmsg);
403}
404
Jon Paul Maloy38206d52015-11-19 14:30:46 -0500405void tipc_link_reinit(struct tipc_link *l, u32 addr)
406{
407 msg_set_prevnode(l->pmsg, addr);
408}
409
Per Lidenb97bf3f2006-01-02 19:04:38 +0100410/**
Per Liden4323add2006-01-18 00:38:21 +0100411 * tipc_link_create - create a new link
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400412 * @n: pointer to associated node
Jon Paul Maloy0e054982015-10-22 08:51:36 -0400413 * @if_name: associated interface name
414 * @bearer_id: id (index) of associated bearer
415 * @tolerance: link tolerance to be used by link
416 * @net_plane: network plane (A,B,c..) this link belongs to
417 * @mtu: mtu to be advertised by link
418 * @priority: priority to be used by link
419 * @window: send window to be used by link
420 * @session: session to be used by link
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400421 * @ownnode: identity of own node
Jon Paul Maloy0e054982015-10-22 08:51:36 -0400422 * @peer: node id of peer node
Jon Paul Maloyfd556f22015-10-22 08:51:40 -0400423 * @peer_caps: bitmap describing peer node capabilities
Jon Paul Maloy52666982015-10-22 08:51:41 -0400424 * @bc_sndlink: the namespace global link used for broadcast sending
425 * @bc_rcvlink: the peer specific link used for broadcast reception
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400426 * @inputq: queue to put messages ready for delivery
427 * @namedq: queue to put binding table update messages ready for delivery
428 * @link: return value, pointer to put the created link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900429 *
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400430 * Returns true if link was created, otherwise false
Per Lidenb97bf3f2006-01-02 19:04:38 +0100431 */
Jon Paul Maloyc72fa872015-10-22 08:51:46 -0400432bool tipc_link_create(struct net *net, char *if_name, int bearer_id,
Jon Paul Maloy0e054982015-10-22 08:51:36 -0400433 int tolerance, char net_plane, u32 mtu, int priority,
434 int window, u32 session, u32 ownnode, u32 peer,
Jon Paul Maloy52666982015-10-22 08:51:41 -0400435 u16 peer_caps,
Jon Paul Maloy52666982015-10-22 08:51:41 -0400436 struct tipc_link *bc_sndlink,
437 struct tipc_link *bc_rcvlink,
438 struct sk_buff_head *inputq,
439 struct sk_buff_head *namedq,
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400440 struct tipc_link **link)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100441{
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400442 struct tipc_link *l;
443 struct tipc_msg *hdr;
Allan Stephens37b9c082011-02-28 11:32:27 -0500444
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400445 l = kzalloc(sizeof(*l), GFP_ATOMIC);
446 if (!l)
447 return false;
448 *link = l;
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400449 l->pmsg = (struct tipc_msg *)&l->proto_msg;
450 hdr = l->pmsg;
451 tipc_msg_init(ownnode, hdr, LINK_PROTOCOL, RESET_MSG, INT_H_SIZE, peer);
452 msg_set_size(hdr, sizeof(l->proto_msg));
453 msg_set_session(hdr, session);
454 msg_set_bearer_id(hdr, l->bearer_id);
Jon Paul Maloy0e054982015-10-22 08:51:36 -0400455
456 /* Note: peer i/f name is completed by reset/activate message */
457 sprintf(l->name, "%u.%u.%u:%s-%u.%u.%u:unknown",
458 tipc_zone(ownnode), tipc_cluster(ownnode), tipc_node(ownnode),
459 if_name, tipc_zone(peer), tipc_cluster(peer), tipc_node(peer));
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400460 strcpy((char *)msg_data(hdr), if_name);
Jon Paul Maloy0e054982015-10-22 08:51:36 -0400461
462 l->addr = peer;
Jon Paul Maloyfd556f22015-10-22 08:51:40 -0400463 l->peer_caps = peer_caps;
Jon Paul Maloyc72fa872015-10-22 08:51:46 -0400464 l->net = net;
Jon Paul Maloy0e054982015-10-22 08:51:36 -0400465 l->peer_session = WILDCARD_SESSION;
466 l->bearer_id = bearer_id;
467 l->tolerance = tolerance;
468 l->net_plane = net_plane;
469 l->advertised_mtu = mtu;
470 l->mtu = mtu;
471 l->priority = priority;
472 tipc_link_set_queue_limits(l, window);
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -0400473 l->ackers = 1;
Jon Paul Maloy52666982015-10-22 08:51:41 -0400474 l->bc_sndlink = bc_sndlink;
475 l->bc_rcvlink = bc_rcvlink;
Jon Paul Maloy0e054982015-10-22 08:51:36 -0400476 l->inputq = inputq;
477 l->namedq = namedq;
478 l->state = LINK_RESETTING;
Jon Paul Maloy440d8962015-07-30 18:24:26 -0400479 __skb_queue_head_init(&l->transmq);
480 __skb_queue_head_init(&l->backlogq);
481 __skb_queue_head_init(&l->deferdq);
482 skb_queue_head_init(&l->wakeupq);
483 skb_queue_head_init(l->inputq);
484 return true;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100485}
486
Jon Paul Maloy32301902015-10-22 08:51:37 -0400487/**
488 * tipc_link_bc_create - create new link to be used for broadcast
489 * @n: pointer to associated node
490 * @mtu: mtu to be used
491 * @window: send window to be used
492 * @inputq: queue to put messages ready for delivery
493 * @namedq: queue to put binding table update messages ready for delivery
494 * @link: return value, pointer to put the created link
495 *
496 * Returns true if link was created, otherwise false
497 */
Jon Paul Maloyc72fa872015-10-22 08:51:46 -0400498bool tipc_link_bc_create(struct net *net, u32 ownnode, u32 peer,
Jon Paul Maloy52666982015-10-22 08:51:41 -0400499 int mtu, int window, u16 peer_caps,
Jon Paul Maloy32301902015-10-22 08:51:37 -0400500 struct sk_buff_head *inputq,
501 struct sk_buff_head *namedq,
Jon Paul Maloy52666982015-10-22 08:51:41 -0400502 struct tipc_link *bc_sndlink,
Jon Paul Maloy32301902015-10-22 08:51:37 -0400503 struct tipc_link **link)
504{
505 struct tipc_link *l;
506
Jon Paul Maloyc72fa872015-10-22 08:51:46 -0400507 if (!tipc_link_create(net, "", MAX_BEARERS, 0, 'Z', mtu, 0, window,
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -0400508 0, ownnode, peer, peer_caps, bc_sndlink,
Jon Paul Maloy52666982015-10-22 08:51:41 -0400509 NULL, inputq, namedq, link))
Jon Paul Maloy32301902015-10-22 08:51:37 -0400510 return false;
511
512 l = *link;
513 strcpy(l->name, tipc_bclink_name);
514 tipc_link_reset(l);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400515 l->state = LINK_RESET;
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400516 l->ackers = 0;
Jon Paul Maloy52666982015-10-22 08:51:41 -0400517 l->bc_rcvlink = l;
518
519 /* Broadcast send link is always up */
520 if (link_is_bc_sndlink(l))
521 l->state = LINK_ESTABLISHED;
522
Jon Paul Maloy32301902015-10-22 08:51:37 -0400523 return true;
524}
525
Per Lidenb97bf3f2006-01-02 19:04:38 +0100526/**
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400527 * tipc_link_fsm_evt - link finite state machine
528 * @l: pointer to link
529 * @evt: state machine event to be processed
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400530 */
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400531int tipc_link_fsm_evt(struct tipc_link *l, int evt)
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400532{
Jon Paul Maloy5045f7b2015-07-30 18:24:20 -0400533 int rc = 0;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400534
535 switch (l->state) {
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400536 case LINK_RESETTING:
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400537 switch (evt) {
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400538 case LINK_PEER_RESET_EVT:
539 l->state = LINK_PEER_RESET;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400540 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400541 case LINK_RESET_EVT:
542 l->state = LINK_RESET;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400543 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400544 case LINK_FAILURE_EVT:
545 case LINK_FAILOVER_BEGIN_EVT:
546 case LINK_ESTABLISH_EVT:
547 case LINK_FAILOVER_END_EVT:
548 case LINK_SYNCH_BEGIN_EVT:
549 case LINK_SYNCH_END_EVT:
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400550 default:
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400551 goto illegal_evt;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400552 }
553 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400554 case LINK_RESET:
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400555 switch (evt) {
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400556 case LINK_PEER_RESET_EVT:
557 l->state = LINK_ESTABLISHING;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400558 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400559 case LINK_FAILOVER_BEGIN_EVT:
560 l->state = LINK_FAILINGOVER;
561 case LINK_FAILURE_EVT:
562 case LINK_RESET_EVT:
563 case LINK_ESTABLISH_EVT:
564 case LINK_FAILOVER_END_EVT:
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400565 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400566 case LINK_SYNCH_BEGIN_EVT:
567 case LINK_SYNCH_END_EVT:
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400568 default:
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400569 goto illegal_evt;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400570 }
571 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400572 case LINK_PEER_RESET:
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400573 switch (evt) {
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400574 case LINK_RESET_EVT:
575 l->state = LINK_ESTABLISHING;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400576 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400577 case LINK_PEER_RESET_EVT:
578 case LINK_ESTABLISH_EVT:
579 case LINK_FAILURE_EVT:
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400580 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400581 case LINK_SYNCH_BEGIN_EVT:
582 case LINK_SYNCH_END_EVT:
583 case LINK_FAILOVER_BEGIN_EVT:
584 case LINK_FAILOVER_END_EVT:
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400585 default:
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400586 goto illegal_evt;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400587 }
588 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400589 case LINK_FAILINGOVER:
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400590 switch (evt) {
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400591 case LINK_FAILOVER_END_EVT:
592 l->state = LINK_RESET;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400593 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400594 case LINK_PEER_RESET_EVT:
595 case LINK_RESET_EVT:
596 case LINK_ESTABLISH_EVT:
597 case LINK_FAILURE_EVT:
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400598 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400599 case LINK_FAILOVER_BEGIN_EVT:
600 case LINK_SYNCH_BEGIN_EVT:
601 case LINK_SYNCH_END_EVT:
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400602 default:
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400603 goto illegal_evt;
604 }
605 break;
606 case LINK_ESTABLISHING:
607 switch (evt) {
608 case LINK_ESTABLISH_EVT:
609 l->state = LINK_ESTABLISHED;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400610 break;
611 case LINK_FAILOVER_BEGIN_EVT:
612 l->state = LINK_FAILINGOVER;
613 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400614 case LINK_RESET_EVT:
Jon Paul Maloy73f646c2015-10-15 14:52:44 -0400615 l->state = LINK_RESET;
616 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400617 case LINK_FAILURE_EVT:
Jon Paul Maloy73f646c2015-10-15 14:52:44 -0400618 case LINK_PEER_RESET_EVT:
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400619 case LINK_SYNCH_BEGIN_EVT:
620 case LINK_FAILOVER_END_EVT:
621 break;
622 case LINK_SYNCH_END_EVT:
623 default:
624 goto illegal_evt;
625 }
626 break;
627 case LINK_ESTABLISHED:
628 switch (evt) {
629 case LINK_PEER_RESET_EVT:
630 l->state = LINK_PEER_RESET;
631 rc |= TIPC_LINK_DOWN_EVT;
632 break;
633 case LINK_FAILURE_EVT:
634 l->state = LINK_RESETTING;
635 rc |= TIPC_LINK_DOWN_EVT;
636 break;
637 case LINK_RESET_EVT:
638 l->state = LINK_RESET;
639 break;
640 case LINK_ESTABLISH_EVT:
Jon Paul Maloy5ae2f8e2015-08-20 02:12:55 -0400641 case LINK_SYNCH_END_EVT:
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400642 break;
643 case LINK_SYNCH_BEGIN_EVT:
644 l->state = LINK_SYNCHING;
645 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400646 case LINK_FAILOVER_BEGIN_EVT:
647 case LINK_FAILOVER_END_EVT:
648 default:
649 goto illegal_evt;
650 }
651 break;
652 case LINK_SYNCHING:
653 switch (evt) {
654 case LINK_PEER_RESET_EVT:
655 l->state = LINK_PEER_RESET;
656 rc |= TIPC_LINK_DOWN_EVT;
657 break;
658 case LINK_FAILURE_EVT:
659 l->state = LINK_RESETTING;
660 rc |= TIPC_LINK_DOWN_EVT;
661 break;
662 case LINK_RESET_EVT:
663 l->state = LINK_RESET;
664 break;
665 case LINK_ESTABLISH_EVT:
666 case LINK_SYNCH_BEGIN_EVT:
667 break;
668 case LINK_SYNCH_END_EVT:
669 l->state = LINK_ESTABLISHED;
670 break;
671 case LINK_FAILOVER_BEGIN_EVT:
672 case LINK_FAILOVER_END_EVT:
673 default:
674 goto illegal_evt;
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400675 }
676 break;
677 default:
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400678 pr_err("Unknown FSM state %x in %s\n", l->state, l->name);
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400679 }
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400680 return rc;
681illegal_evt:
682 pr_err("Illegal FSM event %x in state %x on link %s\n",
683 evt, l->state, l->name);
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400684 return rc;
685}
686
Jon Paul Maloy333ef692015-07-16 16:54:28 -0400687/* link_profile_stats - update statistical profiling of traffic
688 */
689static void link_profile_stats(struct tipc_link *l)
690{
691 struct sk_buff *skb;
692 struct tipc_msg *msg;
693 int length;
694
695 /* Update counters used in statistical profiling of send traffic */
696 l->stats.accu_queue_sz += skb_queue_len(&l->transmq);
697 l->stats.queue_sz_counts++;
698
699 skb = skb_peek(&l->transmq);
700 if (!skb)
701 return;
702 msg = buf_msg(skb);
703 length = msg_size(msg);
704
705 if (msg_user(msg) == MSG_FRAGMENTER) {
706 if (msg_type(msg) != FIRST_FRAGMENT)
707 return;
708 length = msg_size(msg_get_wrapped(msg));
709 }
710 l->stats.msg_lengths_total += length;
711 l->stats.msg_length_counts++;
712 if (length <= 64)
713 l->stats.msg_length_profile[0]++;
714 else if (length <= 256)
715 l->stats.msg_length_profile[1]++;
716 else if (length <= 1024)
717 l->stats.msg_length_profile[2]++;
718 else if (length <= 4096)
719 l->stats.msg_length_profile[3]++;
720 else if (length <= 16384)
721 l->stats.msg_length_profile[4]++;
722 else if (length <= 32768)
723 l->stats.msg_length_profile[5]++;
724 else
725 l->stats.msg_length_profile[6]++;
726}
727
728/* tipc_link_timeout - perform periodic task as instructed from node timeout
729 */
Jon Paul Maloy52666982015-10-22 08:51:41 -0400730/* tipc_link_timeout - perform periodic task as instructed from node timeout
731 */
Jon Paul Maloy333ef692015-07-16 16:54:28 -0400732int tipc_link_timeout(struct tipc_link *l, struct sk_buff_head *xmitq)
733{
734 int rc = 0;
Jon Paul Maloy5045f7b2015-07-30 18:24:20 -0400735 int mtyp = STATE_MSG;
736 bool xmit = false;
737 bool prb = false;
Jon Paul Maloy52666982015-10-22 08:51:41 -0400738 u16 bc_snt = l->bc_sndlink->snd_nxt - 1;
739 u16 bc_acked = l->bc_rcvlink->acked;
740 bool bc_up = link_is_up(l->bc_rcvlink);
Jon Paul Maloy333ef692015-07-16 16:54:28 -0400741
742 link_profile_stats(l);
Jon Paul Maloy5045f7b2015-07-30 18:24:20 -0400743
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400744 switch (l->state) {
745 case LINK_ESTABLISHED:
746 case LINK_SYNCHING:
Jon Paul Maloy5045f7b2015-07-30 18:24:20 -0400747 if (!l->silent_intv_cnt) {
Jon Paul Maloy52666982015-10-22 08:51:41 -0400748 if (bc_up && (bc_acked != bc_snt))
Jon Paul Maloy5045f7b2015-07-30 18:24:20 -0400749 xmit = true;
750 } else if (l->silent_intv_cnt <= l->abort_limit) {
751 xmit = true;
752 prb = true;
753 } else {
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400754 rc |= tipc_link_fsm_evt(l, LINK_FAILURE_EVT);
Jon Paul Maloy5045f7b2015-07-30 18:24:20 -0400755 }
756 l->silent_intv_cnt++;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400757 break;
758 case LINK_RESET:
Jon Paul Maloy5045f7b2015-07-30 18:24:20 -0400759 xmit = true;
760 mtyp = RESET_MSG;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400761 break;
762 case LINK_ESTABLISHING:
Jon Paul Maloy5045f7b2015-07-30 18:24:20 -0400763 xmit = true;
764 mtyp = ACTIVATE_MSG;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400765 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400766 case LINK_PEER_RESET:
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400767 case LINK_RESETTING:
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400768 case LINK_FAILINGOVER:
769 break;
770 default:
771 break;
Jon Paul Maloy5045f7b2015-07-30 18:24:20 -0400772 }
Jon Paul Maloy662921c2015-07-30 18:24:21 -0400773
Jon Paul Maloy5045f7b2015-07-30 18:24:20 -0400774 if (xmit)
775 tipc_link_build_proto_msg(l, mtyp, prb, 0, 0, 0, xmitq);
776
Jon Paul Maloy333ef692015-07-16 16:54:28 -0400777 return rc;
778}
779
Jon Paul Maloy6ab30f92015-07-16 16:54:27 -0400780/**
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400781 * link_schedule_user - schedule a message sender for wakeup after congestion
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400782 * @link: congested link
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400783 * @list: message that was attempted sent
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400784 * Create pseudo msg to send back to user when congestion abates
Jon Paul Maloy22d85c72015-07-16 16:54:23 -0400785 * Does not consume buffer list
Per Lidenb97bf3f2006-01-02 19:04:38 +0100786 */
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400787static int link_schedule_user(struct tipc_link *link, struct sk_buff_head *list)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100788{
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400789 struct tipc_msg *msg = buf_msg(skb_peek(list));
790 int imp = msg_importance(msg);
791 u32 oport = msg_origport(msg);
792 u32 addr = link_own_addr(link);
793 struct sk_buff *skb;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100794
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400795 /* This really cannot happen... */
796 if (unlikely(imp > TIPC_CRITICAL_IMPORTANCE)) {
797 pr_warn("%s<%s>, send queue full", link_rst_msg, link->name);
Jon Paul Maloy22d85c72015-07-16 16:54:23 -0400798 return -ENOBUFS;
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400799 }
800 /* Non-blocking sender: */
801 if (TIPC_SKB_CB(skb_peek(list))->wakeup_pending)
802 return -ELINKCONG;
803
804 /* Create and schedule wakeup pseudo message */
805 skb = tipc_msg_create(SOCK_WAKEUP, 0, INT_H_SIZE, 0,
806 addr, addr, oport, 0, 0);
807 if (!skb)
Jon Paul Maloy22d85c72015-07-16 16:54:23 -0400808 return -ENOBUFS;
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400809 TIPC_SKB_CB(skb)->chain_sz = skb_queue_len(list);
810 TIPC_SKB_CB(skb)->chain_imp = imp;
811 skb_queue_tail(&link->wakeupq, skb);
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400812 link->stats.link_congs++;
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400813 return -ELINKCONG;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100814}
815
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400816/**
817 * link_prepare_wakeup - prepare users for wakeup after congestion
818 * @link: congested link
819 * Move a number of waiting users, as permitted by available space in
820 * the send queue, from link wait queue to node wait queue for wakeup
821 */
Jon Paul Maloy1f66d162015-03-25 12:07:24 -0400822void link_prepare_wakeup(struct tipc_link *l)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100823{
Jon Paul Maloy1f66d162015-03-25 12:07:24 -0400824 int pnd[TIPC_SYSTEM_IMPORTANCE + 1] = {0,};
825 int imp, lim;
Ying Xue58d78b32014-11-26 11:41:51 +0800826 struct sk_buff *skb, *tmp;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100827
Jon Paul Maloy1f66d162015-03-25 12:07:24 -0400828 skb_queue_walk_safe(&l->wakeupq, skb, tmp) {
829 imp = TIPC_SKB_CB(skb)->chain_imp;
830 lim = l->window + l->backlog[imp].limit;
831 pnd[imp] += TIPC_SKB_CB(skb)->chain_sz;
832 if ((pnd[imp] + l->backlog[imp].len) >= lim)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100833 break;
Jon Paul Maloy1f66d162015-03-25 12:07:24 -0400834 skb_unlink(skb, &l->wakeupq);
Jon Paul Maloyd39bbd42015-07-16 16:54:21 -0400835 skb_queue_tail(l->inputq, skb);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100836 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100837}
838
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400839void tipc_link_reset(struct tipc_link *l)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100840{
Allan Stephensa686e682008-06-04 17:29:39 -0700841 /* Link is down, accept any session */
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400842 l->peer_session = WILDCARD_SESSION;
843
844 /* If peer is up, it only accepts an incremented session number */
845 msg_set_session(l->pmsg, msg_session(l->pmsg) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100846
Jon Paul Maloyed193ec2015-04-02 09:33:02 -0400847 /* Prepare for renewed mtu size negotiation */
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400848 l->mtu = l->advertised_mtu;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900849
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -0400850 /* Clean up all queues and counters: */
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400851 __skb_queue_purge(&l->transmq);
852 __skb_queue_purge(&l->deferdq);
Jon Paul Maloy23d83352015-07-30 18:24:24 -0400853 skb_queue_splice_init(&l->wakeupq, l->inputq);
Jon Paul Maloy2af5ae32015-10-22 08:51:48 -0400854 __skb_queue_purge(&l->backlogq);
855 l->backlog[TIPC_LOW_IMPORTANCE].len = 0;
856 l->backlog[TIPC_MEDIUM_IMPORTANCE].len = 0;
857 l->backlog[TIPC_HIGH_IMPORTANCE].len = 0;
858 l->backlog[TIPC_CRITICAL_IMPORTANCE].len = 0;
859 l->backlog[TIPC_SYSTEM_IMPORTANCE].len = 0;
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400860 kfree_skb(l->reasm_buf);
861 kfree_skb(l->failover_reasm_skb);
862 l->reasm_buf = NULL;
863 l->failover_reasm_skb = NULL;
864 l->rcv_unacked = 0;
865 l->snd_nxt = 1;
866 l->rcv_nxt = 1;
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -0400867 l->acked = 0;
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400868 l->silent_intv_cnt = 0;
869 l->stats.recv_info = 0;
870 l->stale_count = 0;
Jon Paul Maloy52666982015-10-22 08:51:41 -0400871 l->bc_peer_is_up = false;
Jon Paul Maloy38206d52015-11-19 14:30:46 -0500872 tipc_link_reset_stats(l);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100873}
874
Per Lidenb97bf3f2006-01-02 19:04:38 +0100875/**
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -0400876 * tipc_link_xmit(): enqueue buffer list according to queue situation
877 * @link: link to use
878 * @list: chain of buffers containing message
879 * @xmitq: returned list of packets to be sent by caller
880 *
881 * Consumes the buffer chain, except when returning -ELINKCONG,
882 * since the caller then may want to make more send attempts.
883 * Returns 0 if success, or errno: -ELINKCONG, -EMSGSIZE or -ENOBUFS
884 * Messages at TIPC_SYSTEM_IMPORTANCE are always accepted
885 */
886int tipc_link_xmit(struct tipc_link *l, struct sk_buff_head *list,
887 struct sk_buff_head *xmitq)
888{
889 struct tipc_msg *hdr = buf_msg(skb_peek(list));
890 unsigned int maxwin = l->window;
891 unsigned int i, imp = msg_importance(hdr);
892 unsigned int mtu = l->mtu;
893 u16 ack = l->rcv_nxt - 1;
894 u16 seqno = l->snd_nxt;
Jon Paul Maloy52666982015-10-22 08:51:41 -0400895 u16 bc_ack = l->bc_rcvlink->rcv_nxt - 1;
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -0400896 struct sk_buff_head *transmq = &l->transmq;
897 struct sk_buff_head *backlogq = &l->backlogq;
898 struct sk_buff *skb, *_skb, *bskb;
899
900 /* Match msg importance against this and all higher backlog limits: */
901 for (i = imp; i <= TIPC_SYSTEM_IMPORTANCE; i++) {
902 if (unlikely(l->backlog[i].len >= l->backlog[i].limit))
903 return link_schedule_user(l, list);
904 }
905 if (unlikely(msg_size(hdr) > mtu))
906 return -EMSGSIZE;
907
908 /* Prepare each packet for sending, and add to relevant queue: */
909 while (skb_queue_len(list)) {
910 skb = skb_peek(list);
911 hdr = buf_msg(skb);
912 msg_set_seqno(hdr, seqno);
913 msg_set_ack(hdr, ack);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400914 msg_set_bcast_ack(hdr, bc_ack);
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -0400915
916 if (likely(skb_queue_len(transmq) < maxwin)) {
917 _skb = skb_clone(skb, GFP_ATOMIC);
918 if (!_skb)
919 return -ENOBUFS;
920 __skb_dequeue(list);
921 __skb_queue_tail(transmq, skb);
922 __skb_queue_tail(xmitq, _skb);
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -0400923 TIPC_SKB_CB(skb)->ackers = l->ackers;
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -0400924 l->rcv_unacked = 0;
925 seqno++;
926 continue;
927 }
928 if (tipc_msg_bundle(skb_peek_tail(backlogq), hdr, mtu)) {
929 kfree_skb(__skb_dequeue(list));
930 l->stats.sent_bundled++;
931 continue;
932 }
933 if (tipc_msg_make_bundle(&bskb, hdr, mtu, l->addr)) {
934 kfree_skb(__skb_dequeue(list));
935 __skb_queue_tail(backlogq, bskb);
936 l->backlog[msg_importance(buf_msg(bskb))].len++;
937 l->stats.sent_bundled++;
938 l->stats.sent_bundles++;
939 continue;
940 }
941 l->backlog[imp].len += skb_queue_len(list);
942 skb_queue_splice_tail_init(list, backlogq);
943 }
944 l->snd_nxt = seqno;
945 return 0;
946}
947
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400948void tipc_link_advance_backlog(struct tipc_link *l, struct sk_buff_head *xmitq)
949{
950 struct sk_buff *skb, *_skb;
951 struct tipc_msg *hdr;
952 u16 seqno = l->snd_nxt;
953 u16 ack = l->rcv_nxt - 1;
Jon Paul Maloy52666982015-10-22 08:51:41 -0400954 u16 bc_ack = l->bc_rcvlink->rcv_nxt - 1;
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400955
956 while (skb_queue_len(&l->transmq) < l->window) {
957 skb = skb_peek(&l->backlogq);
958 if (!skb)
959 break;
960 _skb = skb_clone(skb, GFP_ATOMIC);
961 if (!_skb)
962 break;
963 __skb_dequeue(&l->backlogq);
964 hdr = buf_msg(skb);
965 l->backlog[msg_importance(hdr)].len--;
966 __skb_queue_tail(&l->transmq, skb);
967 __skb_queue_tail(xmitq, _skb);
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -0400968 TIPC_SKB_CB(skb)->ackers = l->ackers;
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400969 msg_set_seqno(hdr, seqno);
Jon Paul Maloy52666982015-10-22 08:51:41 -0400970 msg_set_ack(hdr, ack);
971 msg_set_bcast_ack(hdr, bc_ack);
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400972 l->rcv_unacked = 0;
973 seqno++;
974 }
975 l->snd_nxt = seqno;
976}
977
Jon Paul Maloy52666982015-10-22 08:51:41 -0400978static void link_retransmit_failure(struct tipc_link *l, struct sk_buff *skb)
Allan Stephensd356eeb2006-06-25 23:40:01 -0700979{
Jon Paul Maloy52666982015-10-22 08:51:41 -0400980 struct tipc_msg *hdr = buf_msg(skb);
Allan Stephensd356eeb2006-06-25 23:40:01 -0700981
Jon Paul Maloy52666982015-10-22 08:51:41 -0400982 pr_warn("Retransmission failure on link <%s>\n", l->name);
983 link_print(l, "Resetting link ");
984 pr_info("Failed msg: usr %u, typ %u, len %u, err %u\n",
985 msg_user(hdr), msg_type(hdr), msg_size(hdr), msg_errcode(hdr));
986 pr_info("sqno %u, prev: %x, src: %x\n",
987 msg_seqno(hdr), msg_prevnode(hdr), msg_orignode(hdr));
Allan Stephensd356eeb2006-06-25 23:40:01 -0700988}
989
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -0400990int tipc_link_retrans(struct tipc_link *l, u16 from, u16 to,
991 struct sk_buff_head *xmitq)
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400992{
993 struct sk_buff *_skb, *skb = skb_peek(&l->transmq);
994 struct tipc_msg *hdr;
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -0400995 u16 ack = l->rcv_nxt - 1;
Jon Paul Maloy52666982015-10-22 08:51:41 -0400996 u16 bc_ack = l->bc_rcvlink->rcv_nxt - 1;
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400997
998 if (!skb)
999 return 0;
1000
1001 /* Detect repeated retransmit failures on same packet */
1002 if (likely(l->last_retransm != buf_seqno(skb))) {
1003 l->last_retransm = buf_seqno(skb);
1004 l->stale_count = 1;
1005 } else if (++l->stale_count > 100) {
1006 link_retransmit_failure(l, skb);
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001007 return tipc_link_fsm_evt(l, LINK_FAILURE_EVT);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001008 }
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -04001009
1010 /* Move forward to where retransmission should start */
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001011 skb_queue_walk(&l->transmq, skb) {
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -04001012 if (!less(buf_seqno(skb), from))
1013 break;
1014 }
1015
1016 skb_queue_walk_from(&l->transmq, skb) {
1017 if (more(buf_seqno(skb), to))
1018 break;
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001019 hdr = buf_msg(skb);
1020 _skb = __pskb_copy(skb, MIN_H_SIZE, GFP_ATOMIC);
1021 if (!_skb)
1022 return 0;
1023 hdr = buf_msg(_skb);
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -04001024 msg_set_ack(hdr, ack);
1025 msg_set_bcast_ack(hdr, bc_ack);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001026 _skb->priority = TC_PRIO_CONTROL;
1027 __skb_queue_tail(xmitq, _skb);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001028 l->stats.retransmitted++;
1029 }
1030 return 0;
1031}
1032
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001033/* tipc_data_input - deliver data and name distr msgs to upper layer
Erik Hugne7ae934b2014-07-01 10:22:40 +02001034 *
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001035 * Consumes buffer if message is of right type
Erik Hugne7ae934b2014-07-01 10:22:40 +02001036 * Node lock must be held
1037 */
Jon Paul Maloy52666982015-10-22 08:51:41 -04001038static bool tipc_data_input(struct tipc_link *l, struct sk_buff *skb,
Jon Paul Maloy9073fb82015-07-30 18:24:25 -04001039 struct sk_buff_head *inputq)
Erik Hugne7ae934b2014-07-01 10:22:40 +02001040{
Jon Paul Maloy9073fb82015-07-30 18:24:25 -04001041 switch (msg_user(buf_msg(skb))) {
Erik Hugne7ae934b2014-07-01 10:22:40 +02001042 case TIPC_LOW_IMPORTANCE:
1043 case TIPC_MEDIUM_IMPORTANCE:
1044 case TIPC_HIGH_IMPORTANCE:
1045 case TIPC_CRITICAL_IMPORTANCE:
1046 case CONN_MANAGER:
Jon Paul Maloy9945e802015-10-15 14:52:40 -04001047 skb_queue_tail(inputq, skb);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001048 return true;
Erik Hugne7ae934b2014-07-01 10:22:40 +02001049 case NAME_DISTRIBUTOR:
Jon Paul Maloy52666982015-10-22 08:51:41 -04001050 l->bc_rcvlink->state = LINK_ESTABLISHED;
1051 skb_queue_tail(l->namedq, skb);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001052 return true;
Erik Hugne7ae934b2014-07-01 10:22:40 +02001053 case MSG_BUNDLER:
Jon Paul Maloydff29b12015-04-02 09:33:01 -04001054 case TUNNEL_PROTOCOL:
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001055 case MSG_FRAGMENTER:
1056 case BCAST_PROTOCOL:
1057 return false;
1058 default:
1059 pr_warn("Dropping received illegal msg type\n");
1060 kfree_skb(skb);
1061 return false;
1062 };
1063}
1064
1065/* tipc_link_input - process packet that has passed link protocol check
1066 *
1067 * Consumes buffer
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001068 */
Jon Paul Maloy9073fb82015-07-30 18:24:25 -04001069static int tipc_link_input(struct tipc_link *l, struct sk_buff *skb,
1070 struct sk_buff_head *inputq)
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001071{
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001072 struct tipc_msg *hdr = buf_msg(skb);
1073 struct sk_buff **reasm_skb = &l->reasm_buf;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001074 struct sk_buff *iskb;
Jon Paul Maloy9945e802015-10-15 14:52:40 -04001075 struct sk_buff_head tmpq;
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001076 int usr = msg_user(hdr);
Jon Paul Maloy6144a992015-07-30 18:24:16 -04001077 int rc = 0;
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001078 int pos = 0;
1079 int ipos = 0;
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001080
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001081 if (unlikely(usr == TUNNEL_PROTOCOL)) {
1082 if (msg_type(hdr) == SYNCH_MSG) {
1083 __skb_queue_purge(&l->deferdq);
1084 goto drop;
Jon Paul Maloy8b4ed862015-03-25 12:07:26 -04001085 }
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001086 if (!tipc_msg_extract(skb, &iskb, &ipos))
1087 return rc;
1088 kfree_skb(skb);
1089 skb = iskb;
1090 hdr = buf_msg(skb);
1091 if (less(msg_seqno(hdr), l->drop_point))
1092 goto drop;
Jon Paul Maloy9073fb82015-07-30 18:24:25 -04001093 if (tipc_data_input(l, skb, inputq))
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001094 return rc;
1095 usr = msg_user(hdr);
1096 reasm_skb = &l->failover_reasm_skb;
1097 }
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001098
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001099 if (usr == MSG_BUNDLER) {
Jon Paul Maloy9945e802015-10-15 14:52:40 -04001100 skb_queue_head_init(&tmpq);
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001101 l->stats.recv_bundles++;
1102 l->stats.recv_bundled += msg_msgcnt(hdr);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001103 while (tipc_msg_extract(skb, &iskb, &pos))
Jon Paul Maloy9945e802015-10-15 14:52:40 -04001104 tipc_data_input(l, iskb, &tmpq);
1105 tipc_skb_queue_splice_tail(&tmpq, inputq);
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001106 return 0;
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001107 } else if (usr == MSG_FRAGMENTER) {
1108 l->stats.recv_fragments++;
1109 if (tipc_buf_append(reasm_skb, &skb)) {
1110 l->stats.recv_fragmented++;
Jon Paul Maloy9073fb82015-07-30 18:24:25 -04001111 tipc_data_input(l, skb, inputq);
Jon Paul Maloy52666982015-10-22 08:51:41 -04001112 } else if (!*reasm_skb && !link_is_bc_rcvlink(l)) {
1113 pr_warn_ratelimited("Unable to build fragment list\n");
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001114 return tipc_link_fsm_evt(l, LINK_FAILURE_EVT);
Jon Paul Maloyc637c102015-02-05 08:36:41 -05001115 }
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001116 return 0;
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001117 } else if (usr == BCAST_PROTOCOL) {
Jon Paul Maloyc72fa872015-10-22 08:51:46 -04001118 tipc_bcast_lock(l->net);
Jon Paul Maloy52666982015-10-22 08:51:41 -04001119 tipc_link_bc_init_rcv(l->bc_rcvlink, hdr);
Jon Paul Maloyc72fa872015-10-22 08:51:46 -04001120 tipc_bcast_unlock(l->net);
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001121 }
1122drop:
1123 kfree_skb(skb);
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001124 return 0;
Erik Hugne7ae934b2014-07-01 10:22:40 +02001125}
1126
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001127static bool tipc_link_release_pkts(struct tipc_link *l, u16 acked)
1128{
1129 bool released = false;
1130 struct sk_buff *skb, *tmp;
1131
1132 skb_queue_walk_safe(&l->transmq, skb, tmp) {
1133 if (more(buf_seqno(skb), acked))
1134 break;
1135 __skb_unlink(skb, &l->transmq);
1136 kfree_skb(skb);
1137 released = true;
1138 }
1139 return released;
1140}
1141
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001142/* tipc_link_build_ack_msg: prepare link acknowledge message for transmission
Jon Paul Maloy52666982015-10-22 08:51:41 -04001143 *
1144 * Note that sending of broadcast ack is coordinated among nodes, to reduce
1145 * risk of ack storms towards the sender
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001146 */
Jon Paul Maloy52666982015-10-22 08:51:41 -04001147int tipc_link_build_ack_msg(struct tipc_link *l, struct sk_buff_head *xmitq)
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001148{
Jon Paul Maloy52666982015-10-22 08:51:41 -04001149 if (!l)
1150 return 0;
1151
1152 /* Broadcast ACK must be sent via a unicast link => defer to caller */
1153 if (link_is_bc_rcvlink(l)) {
1154 if (((l->rcv_nxt ^ link_own_addr(l)) & 0xf) != 0xf)
1155 return 0;
1156 l->rcv_unacked = 0;
1157 return TIPC_LINK_SND_BC_ACK;
1158 }
1159
1160 /* Unicast ACK */
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001161 l->rcv_unacked = 0;
1162 l->stats.sent_acks++;
1163 tipc_link_build_proto_msg(l, STATE_MSG, 0, 0, 0, 0, xmitq);
Jon Paul Maloy52666982015-10-22 08:51:41 -04001164 return 0;
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001165}
1166
Jon Paul Maloy282b3a02015-10-15 14:52:45 -04001167/* tipc_link_build_reset_msg: prepare link RESET or ACTIVATE message
1168 */
1169void tipc_link_build_reset_msg(struct tipc_link *l, struct sk_buff_head *xmitq)
1170{
1171 int mtyp = RESET_MSG;
1172
1173 if (l->state == LINK_ESTABLISHING)
1174 mtyp = ACTIVATE_MSG;
1175
1176 tipc_link_build_proto_msg(l, mtyp, 0, 0, 0, 0, xmitq);
1177}
1178
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001179/* tipc_link_build_nack_msg: prepare link nack message for transmission
1180 */
1181static void tipc_link_build_nack_msg(struct tipc_link *l,
1182 struct sk_buff_head *xmitq)
1183{
1184 u32 def_cnt = ++l->stats.deferred_recv;
1185
Jon Paul Maloy52666982015-10-22 08:51:41 -04001186 if (link_is_bc_rcvlink(l))
1187 return;
1188
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001189 if ((skb_queue_len(&l->deferdq) == 1) || !(def_cnt % TIPC_NACK_INTV))
1190 tipc_link_build_proto_msg(l, STATE_MSG, 0, 0, 0, 0, xmitq);
1191}
1192
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001193/* tipc_link_rcv - process TIPC packets/messages arriving from off-node
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001194 * @l: the link that should handle the message
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001195 * @skb: TIPC packet
1196 * @xmitq: queue to place packets to be sent after this call
1197 */
1198int tipc_link_rcv(struct tipc_link *l, struct sk_buff *skb,
1199 struct sk_buff_head *xmitq)
1200{
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001201 struct sk_buff_head *defq = &l->deferdq;
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001202 struct tipc_msg *hdr;
Jon Paul Maloy81204c42015-10-15 14:52:42 -04001203 u16 seqno, rcv_nxt, win_lim;
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001204 int rc = 0;
1205
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001206 do {
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001207 hdr = buf_msg(skb);
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001208 seqno = msg_seqno(hdr);
1209 rcv_nxt = l->rcv_nxt;
Jon Paul Maloy81204c42015-10-15 14:52:42 -04001210 win_lim = rcv_nxt + TIPC_MAX_LINK_WIN;
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001211
1212 /* Verify and update link state */
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001213 if (unlikely(msg_user(hdr) == LINK_PROTOCOL))
1214 return tipc_link_proto_rcv(l, skb, xmitq);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001215
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001216 if (unlikely(!link_is_up(l))) {
Jon Paul Maloy73f646c2015-10-15 14:52:44 -04001217 if (l->state == LINK_ESTABLISHING)
1218 rc = TIPC_LINK_UP_EVT;
1219 goto drop;
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001220 }
1221
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001222 /* Don't send probe at next timeout expiration */
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001223 l->silent_intv_cnt = 0;
1224
Jon Paul Maloy81204c42015-10-15 14:52:42 -04001225 /* Drop if outside receive window */
1226 if (unlikely(less(seqno, rcv_nxt) || more(seqno, win_lim))) {
1227 l->stats.duplicates++;
1228 goto drop;
1229 }
1230
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001231 /* Forward queues and wake up waiting users */
1232 if (likely(tipc_link_release_pkts(l, msg_ack(hdr)))) {
1233 tipc_link_advance_backlog(l, xmitq);
1234 if (unlikely(!skb_queue_empty(&l->wakeupq)))
1235 link_prepare_wakeup(l);
1236 }
1237
Jon Paul Maloy81204c42015-10-15 14:52:42 -04001238 /* Defer delivery if sequence gap */
1239 if (unlikely(seqno != rcv_nxt)) {
Jon Paul Maloy8306f992015-10-15 14:52:43 -04001240 __tipc_skb_queue_sorted(defq, seqno, skb);
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001241 tipc_link_build_nack_msg(l, xmitq);
1242 break;
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001243 }
1244
Jon Paul Maloy81204c42015-10-15 14:52:42 -04001245 /* Deliver packet */
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001246 l->rcv_nxt++;
1247 l->stats.recv_info++;
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001248 if (!tipc_data_input(l, skb, l->inputq))
Jon Paul Maloy52666982015-10-22 08:51:41 -04001249 rc |= tipc_link_input(l, skb, l->inputq);
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001250 if (unlikely(++l->rcv_unacked >= TIPC_MIN_LINK_WIN))
Jon Paul Maloy52666982015-10-22 08:51:41 -04001251 rc |= tipc_link_build_ack_msg(l, xmitq);
1252 if (unlikely(rc & ~TIPC_LINK_SND_BC_ACK))
1253 break;
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001254 } while ((skb = __skb_dequeue(defq)));
1255
1256 return rc;
1257drop:
1258 kfree_skb(skb);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001259 return rc;
1260}
1261
Allan Stephens8809b252011-10-25 10:44:35 -04001262/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001263 * Send protocol message to the other endpoint.
1264 */
Jon Paul Maloy38206d52015-11-19 14:30:46 -05001265static void tipc_link_proto_xmit(struct tipc_link *l, u32 msg_typ,
1266 int probe_msg, u32 gap, u32 tolerance,
1267 u32 priority)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001268{
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001269 struct sk_buff *skb = NULL;
1270 struct sk_buff_head xmitq;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001271
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001272 __skb_queue_head_init(&xmitq);
1273 tipc_link_build_proto_msg(l, msg_typ, probe_msg, gap,
1274 tolerance, priority, &xmitq);
1275 skb = __skb_dequeue(&xmitq);
1276 if (!skb)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001277 return;
Jon Paul Maloyc72fa872015-10-22 08:51:46 -04001278 tipc_bearer_xmit_skb(l->net, l->bearer_id, skb, l->media_addr);
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001279 l->rcv_unacked = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001280}
1281
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001282static void tipc_link_build_proto_msg(struct tipc_link *l, int mtyp, bool probe,
1283 u16 rcvgap, int tolerance, int priority,
1284 struct sk_buff_head *xmitq)
1285{
1286 struct sk_buff *skb = NULL;
1287 struct tipc_msg *hdr = l->pmsg;
Jon Paul Maloy52666982015-10-22 08:51:41 -04001288 bool node_up = link_is_up(l->bc_rcvlink);
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001289
1290 /* Don't send protocol message during reset or link failover */
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001291 if (tipc_link_is_blocked(l))
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001292 return;
1293
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001294 msg_set_type(hdr, mtyp);
1295 msg_set_net_plane(hdr, l->net_plane);
Jon Paul Maloy52666982015-10-22 08:51:41 -04001296 msg_set_next_sent(hdr, l->snd_nxt);
1297 msg_set_ack(hdr, l->rcv_nxt - 1);
1298 msg_set_bcast_ack(hdr, l->bc_rcvlink->rcv_nxt - 1);
1299 msg_set_last_bcast(hdr, l->bc_sndlink->snd_nxt - 1);
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001300 msg_set_link_tolerance(hdr, tolerance);
1301 msg_set_linkprio(hdr, priority);
1302 msg_set_redundant_link(hdr, node_up);
1303 msg_set_seq_gap(hdr, 0);
1304
1305 /* Compatibility: created msg must not be in sequence with pkt flow */
Jon Paul Maloy52666982015-10-22 08:51:41 -04001306 msg_set_seqno(hdr, l->snd_nxt + U16_MAX / 2);
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001307
1308 if (mtyp == STATE_MSG) {
1309 if (!tipc_link_is_up(l))
1310 return;
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001311
1312 /* Override rcvgap if there are packets in deferred queue */
1313 if (!skb_queue_empty(&l->deferdq))
Jon Paul Maloy52666982015-10-22 08:51:41 -04001314 rcvgap = buf_seqno(skb_peek(&l->deferdq)) - l->rcv_nxt;
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001315 if (rcvgap) {
1316 msg_set_seq_gap(hdr, rcvgap);
1317 l->stats.sent_nacks++;
1318 }
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001319 msg_set_probe(hdr, probe);
1320 if (probe)
1321 l->stats.sent_probes++;
1322 l->stats.sent_states++;
Jon Paul Maloy52666982015-10-22 08:51:41 -04001323 l->rcv_unacked = 0;
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001324 } else {
1325 /* RESET_MSG or ACTIVATE_MSG */
1326 msg_set_max_pkt(hdr, l->advertised_mtu);
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001327 msg_set_ack(hdr, l->rcv_nxt - 1);
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001328 msg_set_next_sent(hdr, 1);
1329 }
1330 skb = tipc_buf_acquire(msg_size(hdr));
1331 if (!skb)
1332 return;
1333 skb_copy_to_linear_data(skb, hdr, msg_size(hdr));
1334 skb->priority = TC_PRIO_CONTROL;
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001335 __skb_queue_tail(xmitq, skb);
Jon Paul Maloy426cc2b2015-07-16 16:54:26 -04001336}
Per Lidenb97bf3f2006-01-02 19:04:38 +01001337
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001338/* tipc_link_tnl_prepare(): prepare and return a list of tunnel packets
Jon Paul Maloyf9aa3582015-10-15 14:52:41 -04001339 * with contents of the link's transmit and backlog queues.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001340 */
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001341void tipc_link_tnl_prepare(struct tipc_link *l, struct tipc_link *tnl,
1342 int mtyp, struct sk_buff_head *xmitq)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001343{
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001344 struct sk_buff *skb, *tnlskb;
1345 struct tipc_msg *hdr, tnlhdr;
1346 struct sk_buff_head *queue = &l->transmq;
1347 struct sk_buff_head tmpxq, tnlq;
1348 u16 pktlen, pktcnt, seqno = l->snd_nxt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001349
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001350 if (!tnl)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001351 return;
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001352
1353 skb_queue_head_init(&tnlq);
1354 skb_queue_head_init(&tmpxq);
1355
1356 /* At least one packet required for safe algorithm => add dummy */
1357 skb = tipc_msg_create(TIPC_LOW_IMPORTANCE, TIPC_DIRECT_MSG,
1358 BASIC_H_SIZE, 0, l->addr, link_own_addr(l),
1359 0, 0, TIPC_ERR_NO_PORT);
Ying Xuea6ca1092014-11-26 11:41:55 +08001360 if (!skb) {
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001361 pr_warn("%sunable to create tunnel packet\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001362 return;
Allan Stephens5392d642006-06-25 23:52:50 -07001363 }
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001364 skb_queue_tail(&tnlq, skb);
1365 tipc_link_xmit(l, &tnlq, &tmpxq);
1366 __skb_queue_purge(&tmpxq);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001367
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001368 /* Initialize reusable tunnel packet header */
1369 tipc_msg_init(link_own_addr(l), &tnlhdr, TUNNEL_PROTOCOL,
1370 mtyp, INT_H_SIZE, l->addr);
1371 pktcnt = skb_queue_len(&l->transmq) + skb_queue_len(&l->backlogq);
1372 msg_set_msgcnt(&tnlhdr, pktcnt);
1373 msg_set_bearer_id(&tnlhdr, l->peer_bearer_id);
1374tnl:
1375 /* Wrap each packet into a tunnel packet */
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -04001376 skb_queue_walk(queue, skb) {
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001377 hdr = buf_msg(skb);
1378 if (queue == &l->backlogq)
1379 msg_set_seqno(hdr, seqno++);
1380 pktlen = msg_size(hdr);
1381 msg_set_size(&tnlhdr, pktlen + INT_H_SIZE);
1382 tnlskb = tipc_buf_acquire(pktlen + INT_H_SIZE);
1383 if (!tnlskb) {
1384 pr_warn("%sunable to send packet\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001385 return;
1386 }
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001387 skb_copy_to_linear_data(tnlskb, &tnlhdr, INT_H_SIZE);
1388 skb_copy_to_linear_data_offset(tnlskb, INT_H_SIZE, hdr, pktlen);
1389 __skb_queue_tail(&tnlq, tnlskb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001390 }
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001391 if (queue != &l->backlogq) {
1392 queue = &l->backlogq;
1393 goto tnl;
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -04001394 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001395
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001396 tipc_link_xmit(tnl, &tnlq, xmitq);
Jon Paul Maloyf006c9c2014-02-13 17:29:11 -05001397
Jon Paul Maloy6e498152015-07-30 18:24:19 -04001398 if (mtyp == FAILOVER_MSG) {
1399 tnl->drop_point = l->rcv_nxt;
1400 tnl->failover_reasm_skb = l->reasm_buf;
1401 l->reasm_buf = NULL;
Jon Paul Maloyf006c9c2014-02-13 17:29:11 -05001402 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001403}
1404
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001405/* tipc_link_proto_rcv(): receive link level protocol message :
1406 * Note that network plane id propagates through the network, and may
1407 * change at any time. The node with lowest numerical id determines
1408 * network plane
1409 */
1410static int tipc_link_proto_rcv(struct tipc_link *l, struct sk_buff *skb,
1411 struct sk_buff_head *xmitq)
1412{
1413 struct tipc_msg *hdr = buf_msg(skb);
1414 u16 rcvgap = 0;
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -04001415 u16 ack = msg_ack(hdr);
1416 u16 gap = msg_seq_gap(hdr);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001417 u16 peers_snd_nxt = msg_next_sent(hdr);
1418 u16 peers_tol = msg_link_tolerance(hdr);
1419 u16 peers_prio = msg_linkprio(hdr);
Jon Paul Maloy2be80c22015-08-20 02:12:56 -04001420 u16 rcv_nxt = l->rcv_nxt;
Jon Paul Maloy73f646c2015-10-15 14:52:44 -04001421 int mtyp = msg_type(hdr);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001422 char *if_name;
1423 int rc = 0;
1424
Jon Paul Maloy52666982015-10-22 08:51:41 -04001425 if (tipc_link_is_blocked(l) || !xmitq)
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001426 goto exit;
1427
1428 if (link_own_addr(l) > msg_prevnode(hdr))
1429 l->net_plane = msg_net_plane(hdr);
1430
Jon Paul Maloy73f646c2015-10-15 14:52:44 -04001431 switch (mtyp) {
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001432 case RESET_MSG:
1433
1434 /* Ignore duplicate RESET with old session number */
1435 if ((less_eq(msg_session(hdr), l->peer_session)) &&
1436 (l->peer_session != WILDCARD_SESSION))
1437 break;
1438 /* fall thru' */
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001439
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001440 case ACTIVATE_MSG:
Jon Paul Maloyc7cad0d2015-11-19 14:30:40 -05001441 skb_linearize(skb);
1442 hdr = buf_msg(skb);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001443
1444 /* Complete own link name with peer's interface name */
1445 if_name = strrchr(l->name, ':') + 1;
1446 if (sizeof(l->name) - (if_name - l->name) <= TIPC_MAX_IF_NAME)
1447 break;
1448 if (msg_data_sz(hdr) < TIPC_MAX_IF_NAME)
1449 break;
1450 strncpy(if_name, msg_data(hdr), TIPC_MAX_IF_NAME);
1451
1452 /* Update own tolerance if peer indicates a non-zero value */
1453 if (in_range(peers_tol, TIPC_MIN_LINK_TOL, TIPC_MAX_LINK_TOL))
1454 l->tolerance = peers_tol;
1455
1456 /* Update own priority if peer's priority is higher */
1457 if (in_range(peers_prio, l->priority + 1, TIPC_MAX_LINK_PRI))
1458 l->priority = peers_prio;
1459
Jon Paul Maloy73f646c2015-10-15 14:52:44 -04001460 /* ACTIVATE_MSG serves as PEER_RESET if link is already down */
1461 if ((mtyp == RESET_MSG) || !link_is_up(l))
1462 rc = tipc_link_fsm_evt(l, LINK_PEER_RESET_EVT);
1463
1464 /* ACTIVATE_MSG takes up link if it was already locally reset */
1465 if ((mtyp == ACTIVATE_MSG) && (l->state == LINK_ESTABLISHING))
1466 rc = TIPC_LINK_UP_EVT;
1467
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001468 l->peer_session = msg_session(hdr);
1469 l->peer_bearer_id = msg_bearer_id(hdr);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001470 if (l->mtu > msg_max_pkt(hdr))
1471 l->mtu = msg_max_pkt(hdr);
1472 break;
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001473
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001474 case STATE_MSG:
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001475
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001476 /* Update own tolerance if peer indicates a non-zero value */
1477 if (in_range(peers_tol, TIPC_MIN_LINK_TOL, TIPC_MAX_LINK_TOL))
1478 l->tolerance = peers_tol;
1479
1480 l->silent_intv_cnt = 0;
1481 l->stats.recv_states++;
1482 if (msg_probe(hdr))
1483 l->stats.recv_probes++;
Jon Paul Maloy73f646c2015-10-15 14:52:44 -04001484
1485 if (!link_is_up(l)) {
1486 if (l->state == LINK_ESTABLISHING)
1487 rc = TIPC_LINK_UP_EVT;
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001488 break;
Jon Paul Maloy73f646c2015-10-15 14:52:44 -04001489 }
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001490
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001491 /* Send NACK if peer has sent pkts we haven't received yet */
Jon Paul Maloy2be80c22015-08-20 02:12:56 -04001492 if (more(peers_snd_nxt, rcv_nxt) && !tipc_link_is_synching(l))
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001493 rcvgap = peers_snd_nxt - l->rcv_nxt;
1494 if (rcvgap || (msg_probe(hdr)))
1495 tipc_link_build_proto_msg(l, STATE_MSG, 0, rcvgap,
Jon Paul Maloy16040892015-07-21 06:42:28 -04001496 0, 0, xmitq);
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -04001497 tipc_link_release_pkts(l, ack);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001498
1499 /* If NACK, retransmit will now start at right position */
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -04001500 if (gap) {
1501 rc = tipc_link_retrans(l, ack + 1, ack + gap, xmitq);
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001502 l->stats.recv_nacks++;
1503 }
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001504
Jon Paul Maloyd9992972015-07-16 16:54:31 -04001505 tipc_link_advance_backlog(l, xmitq);
1506 if (unlikely(!skb_queue_empty(&l->wakeupq)))
1507 link_prepare_wakeup(l);
1508 }
1509exit:
1510 kfree_skb(skb);
1511 return rc;
1512}
1513
Jon Paul Maloy52666982015-10-22 08:51:41 -04001514/* tipc_link_build_bc_proto_msg() - create broadcast protocol message
1515 */
1516static bool tipc_link_build_bc_proto_msg(struct tipc_link *l, bool bcast,
1517 u16 peers_snd_nxt,
1518 struct sk_buff_head *xmitq)
1519{
1520 struct sk_buff *skb;
1521 struct tipc_msg *hdr;
1522 struct sk_buff *dfrd_skb = skb_peek(&l->deferdq);
1523 u16 ack = l->rcv_nxt - 1;
1524 u16 gap_to = peers_snd_nxt - 1;
1525
1526 skb = tipc_msg_create(BCAST_PROTOCOL, STATE_MSG, INT_H_SIZE,
1527 0, l->addr, link_own_addr(l), 0, 0, 0);
1528 if (!skb)
1529 return false;
1530 hdr = buf_msg(skb);
1531 msg_set_last_bcast(hdr, l->bc_sndlink->snd_nxt - 1);
1532 msg_set_bcast_ack(hdr, ack);
1533 msg_set_bcgap_after(hdr, ack);
1534 if (dfrd_skb)
1535 gap_to = buf_seqno(dfrd_skb) - 1;
1536 msg_set_bcgap_to(hdr, gap_to);
1537 msg_set_non_seq(hdr, bcast);
1538 __skb_queue_tail(xmitq, skb);
1539 return true;
1540}
1541
1542/* tipc_link_build_bc_init_msg() - synchronize broadcast link endpoints.
1543 *
1544 * Give a newly added peer node the sequence number where it should
1545 * start receiving and acking broadcast packets.
1546 */
Wu Fengguang742e0382015-10-24 22:56:01 +08001547static void tipc_link_build_bc_init_msg(struct tipc_link *l,
1548 struct sk_buff_head *xmitq)
Jon Paul Maloy52666982015-10-22 08:51:41 -04001549{
1550 struct sk_buff_head list;
1551
1552 __skb_queue_head_init(&list);
1553 if (!tipc_link_build_bc_proto_msg(l->bc_rcvlink, false, 0, &list))
1554 return;
1555 tipc_link_xmit(l, &list, xmitq);
1556}
1557
1558/* tipc_link_bc_init_rcv - receive initial broadcast synch data from peer
1559 */
1560void tipc_link_bc_init_rcv(struct tipc_link *l, struct tipc_msg *hdr)
1561{
1562 int mtyp = msg_type(hdr);
1563 u16 peers_snd_nxt = msg_bc_snd_nxt(hdr);
1564
1565 if (link_is_up(l))
1566 return;
1567
1568 if (msg_user(hdr) == BCAST_PROTOCOL) {
1569 l->rcv_nxt = peers_snd_nxt;
1570 l->state = LINK_ESTABLISHED;
1571 return;
1572 }
1573
1574 if (l->peer_caps & TIPC_BCAST_SYNCH)
1575 return;
1576
1577 if (msg_peer_node_is_up(hdr))
1578 return;
1579
1580 /* Compatibility: accept older, less safe initial synch data */
1581 if ((mtyp == RESET_MSG) || (mtyp == ACTIVATE_MSG))
1582 l->rcv_nxt = peers_snd_nxt;
1583}
1584
1585/* tipc_link_bc_sync_rcv - update rcv link according to peer's send state
1586 */
1587void tipc_link_bc_sync_rcv(struct tipc_link *l, struct tipc_msg *hdr,
1588 struct sk_buff_head *xmitq)
1589{
1590 u16 peers_snd_nxt = msg_bc_snd_nxt(hdr);
1591
1592 if (!link_is_up(l))
1593 return;
1594
1595 if (!msg_peer_node_is_up(hdr))
1596 return;
1597
1598 l->bc_peer_is_up = true;
1599
1600 /* Ignore if peers_snd_nxt goes beyond receive window */
1601 if (more(peers_snd_nxt, l->rcv_nxt + l->window))
1602 return;
1603
1604 if (!more(peers_snd_nxt, l->rcv_nxt)) {
1605 l->nack_state = BC_NACK_SND_CONDITIONAL;
1606 return;
1607 }
1608
1609 /* Don't NACK if one was recently sent or peeked */
1610 if (l->nack_state == BC_NACK_SND_SUPPRESS) {
1611 l->nack_state = BC_NACK_SND_UNCONDITIONAL;
1612 return;
1613 }
1614
1615 /* Conditionally delay NACK sending until next synch rcv */
1616 if (l->nack_state == BC_NACK_SND_CONDITIONAL) {
1617 l->nack_state = BC_NACK_SND_UNCONDITIONAL;
1618 if ((peers_snd_nxt - l->rcv_nxt) < TIPC_MIN_LINK_WIN)
1619 return;
1620 }
1621
1622 /* Send NACK now but suppress next one */
1623 tipc_link_build_bc_proto_msg(l, true, peers_snd_nxt, xmitq);
1624 l->nack_state = BC_NACK_SND_SUPPRESS;
1625}
1626
1627void tipc_link_bc_ack_rcv(struct tipc_link *l, u16 acked,
1628 struct sk_buff_head *xmitq)
1629{
1630 struct sk_buff *skb, *tmp;
1631 struct tipc_link *snd_l = l->bc_sndlink;
1632
1633 if (!link_is_up(l) || !l->bc_peer_is_up)
1634 return;
1635
1636 if (!more(acked, l->acked))
1637 return;
1638
1639 /* Skip over packets peer has already acked */
1640 skb_queue_walk(&snd_l->transmq, skb) {
1641 if (more(buf_seqno(skb), l->acked))
1642 break;
1643 }
1644
1645 /* Update/release the packets peer is acking now */
1646 skb_queue_walk_from_safe(&snd_l->transmq, skb, tmp) {
1647 if (more(buf_seqno(skb), acked))
1648 break;
1649 if (!--TIPC_SKB_CB(skb)->ackers) {
1650 __skb_unlink(skb, &snd_l->transmq);
1651 kfree_skb(skb);
1652 }
1653 }
1654 l->acked = acked;
1655 tipc_link_advance_backlog(snd_l, xmitq);
1656 if (unlikely(!skb_queue_empty(&snd_l->wakeupq)))
1657 link_prepare_wakeup(snd_l);
1658}
1659
1660/* tipc_link_bc_nack_rcv(): receive broadcast nack message
1661 */
1662int tipc_link_bc_nack_rcv(struct tipc_link *l, struct sk_buff *skb,
1663 struct sk_buff_head *xmitq)
1664{
1665 struct tipc_msg *hdr = buf_msg(skb);
1666 u32 dnode = msg_destnode(hdr);
1667 int mtyp = msg_type(hdr);
1668 u16 acked = msg_bcast_ack(hdr);
1669 u16 from = acked + 1;
1670 u16 to = msg_bcgap_to(hdr);
1671 u16 peers_snd_nxt = to + 1;
1672 int rc = 0;
1673
1674 kfree_skb(skb);
1675
1676 if (!tipc_link_is_up(l) || !l->bc_peer_is_up)
1677 return 0;
1678
1679 if (mtyp != STATE_MSG)
1680 return 0;
1681
1682 if (dnode == link_own_addr(l)) {
1683 tipc_link_bc_ack_rcv(l, acked, xmitq);
1684 rc = tipc_link_retrans(l->bc_sndlink, from, to, xmitq);
1685 l->stats.recv_nacks++;
1686 return rc;
1687 }
1688
1689 /* Msg for other node => suppress own NACK at next sync if applicable */
1690 if (more(peers_snd_nxt, l->rcv_nxt) && !less(l->rcv_nxt, from))
1691 l->nack_state = BC_NACK_SND_SUPPRESS;
1692
1693 return 0;
1694}
1695
Jon Paul Maloye3eea1e2015-03-13 16:08:11 -04001696void tipc_link_set_queue_limits(struct tipc_link *l, u32 win)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001697{
Jon Paul Maloyed193ec2015-04-02 09:33:02 -04001698 int max_bulk = TIPC_MAX_PUBLICATIONS / (l->mtu / ITEM_SIZE);
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -04001699
Jon Paul Maloye3eea1e2015-03-13 16:08:11 -04001700 l->window = win;
Jon Paul Maloy1f66d162015-03-25 12:07:24 -04001701 l->backlog[TIPC_LOW_IMPORTANCE].limit = win / 2;
1702 l->backlog[TIPC_MEDIUM_IMPORTANCE].limit = win;
1703 l->backlog[TIPC_HIGH_IMPORTANCE].limit = win / 2 * 3;
1704 l->backlog[TIPC_CRITICAL_IMPORTANCE].limit = win * 2;
1705 l->backlog[TIPC_SYSTEM_IMPORTANCE].limit = max_bulk;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001706}
1707
Allan Stephens5c216e12011-10-18 11:34:29 -04001708/**
Jon Paul Maloy38206d52015-11-19 14:30:46 -05001709 * link_reset_stats - reset link statistics
Jon Paul Maloy1a906322015-11-19 14:30:47 -05001710 * @l: pointer to link
Per Lidenb97bf3f2006-01-02 19:04:38 +01001711 */
Jon Paul Maloy38206d52015-11-19 14:30:46 -05001712void tipc_link_reset_stats(struct tipc_link *l)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001713{
Jon Paul Maloy38206d52015-11-19 14:30:46 -05001714 memset(&l->stats, 0, sizeof(l->stats));
1715 if (!link_is_bc_sndlink(l)) {
1716 l->stats.sent_info = l->snd_nxt;
1717 l->stats.recv_info = l->rcv_nxt;
1718 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001719}
1720
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -04001721static void link_print(struct tipc_link *l, const char *str)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001722{
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -04001723 struct sk_buff *hskb = skb_peek(&l->transmq);
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -04001724 u16 head = hskb ? msg_seqno(buf_msg(hskb)) : l->snd_nxt - 1;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -04001725 u16 tail = l->snd_nxt - 1;
Ying Xue7a2f7d12014-04-21 10:55:46 +08001726
Jon Paul Maloy662921c2015-07-30 18:24:21 -04001727 pr_info("%s Link <%s> state %x\n", str, l->name, l->state);
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -04001728 pr_info("XMTQ: %u [%u-%u], BKLGQ: %u, SNDNX: %u, RCVNX: %u\n",
1729 skb_queue_len(&l->transmq), head, tail,
1730 skb_queue_len(&l->backlogq), l->snd_nxt, l->rcv_nxt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001731}
Richard Alpe0655f6a2014-11-20 10:29:07 +01001732
1733/* Parse and validate nested (link) properties valid for media, bearer and link
1734 */
1735int tipc_nl_parse_link_prop(struct nlattr *prop, struct nlattr *props[])
1736{
1737 int err;
1738
1739 err = nla_parse_nested(props, TIPC_NLA_PROP_MAX, prop,
1740 tipc_nl_prop_policy);
1741 if (err)
1742 return err;
1743
1744 if (props[TIPC_NLA_PROP_PRIO]) {
1745 u32 prio;
1746
1747 prio = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
1748 if (prio > TIPC_MAX_LINK_PRI)
1749 return -EINVAL;
1750 }
1751
1752 if (props[TIPC_NLA_PROP_TOL]) {
1753 u32 tol;
1754
1755 tol = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
1756 if ((tol < TIPC_MIN_LINK_TOL) || (tol > TIPC_MAX_LINK_TOL))
1757 return -EINVAL;
1758 }
1759
1760 if (props[TIPC_NLA_PROP_WIN]) {
1761 u32 win;
1762
1763 win = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
1764 if ((win < TIPC_MIN_LINK_WIN) || (win > TIPC_MAX_LINK_WIN))
1765 return -EINVAL;
1766 }
1767
1768 return 0;
1769}
Richard Alpe7be57fc2014-11-20 10:29:12 +01001770
Richard Alped8182802014-11-24 11:10:29 +01001771static int __tipc_nl_add_stats(struct sk_buff *skb, struct tipc_stats *s)
Richard Alpe7be57fc2014-11-20 10:29:12 +01001772{
1773 int i;
1774 struct nlattr *stats;
1775
1776 struct nla_map {
1777 u32 key;
1778 u32 val;
1779 };
1780
1781 struct nla_map map[] = {
1782 {TIPC_NLA_STATS_RX_INFO, s->recv_info},
1783 {TIPC_NLA_STATS_RX_FRAGMENTS, s->recv_fragments},
1784 {TIPC_NLA_STATS_RX_FRAGMENTED, s->recv_fragmented},
1785 {TIPC_NLA_STATS_RX_BUNDLES, s->recv_bundles},
1786 {TIPC_NLA_STATS_RX_BUNDLED, s->recv_bundled},
1787 {TIPC_NLA_STATS_TX_INFO, s->sent_info},
1788 {TIPC_NLA_STATS_TX_FRAGMENTS, s->sent_fragments},
1789 {TIPC_NLA_STATS_TX_FRAGMENTED, s->sent_fragmented},
1790 {TIPC_NLA_STATS_TX_BUNDLES, s->sent_bundles},
1791 {TIPC_NLA_STATS_TX_BUNDLED, s->sent_bundled},
1792 {TIPC_NLA_STATS_MSG_PROF_TOT, (s->msg_length_counts) ?
1793 s->msg_length_counts : 1},
1794 {TIPC_NLA_STATS_MSG_LEN_CNT, s->msg_length_counts},
1795 {TIPC_NLA_STATS_MSG_LEN_TOT, s->msg_lengths_total},
1796 {TIPC_NLA_STATS_MSG_LEN_P0, s->msg_length_profile[0]},
1797 {TIPC_NLA_STATS_MSG_LEN_P1, s->msg_length_profile[1]},
1798 {TIPC_NLA_STATS_MSG_LEN_P2, s->msg_length_profile[2]},
1799 {TIPC_NLA_STATS_MSG_LEN_P3, s->msg_length_profile[3]},
1800 {TIPC_NLA_STATS_MSG_LEN_P4, s->msg_length_profile[4]},
1801 {TIPC_NLA_STATS_MSG_LEN_P5, s->msg_length_profile[5]},
1802 {TIPC_NLA_STATS_MSG_LEN_P6, s->msg_length_profile[6]},
1803 {TIPC_NLA_STATS_RX_STATES, s->recv_states},
1804 {TIPC_NLA_STATS_RX_PROBES, s->recv_probes},
1805 {TIPC_NLA_STATS_RX_NACKS, s->recv_nacks},
1806 {TIPC_NLA_STATS_RX_DEFERRED, s->deferred_recv},
1807 {TIPC_NLA_STATS_TX_STATES, s->sent_states},
1808 {TIPC_NLA_STATS_TX_PROBES, s->sent_probes},
1809 {TIPC_NLA_STATS_TX_NACKS, s->sent_nacks},
1810 {TIPC_NLA_STATS_TX_ACKS, s->sent_acks},
1811 {TIPC_NLA_STATS_RETRANSMITTED, s->retransmitted},
1812 {TIPC_NLA_STATS_DUPLICATES, s->duplicates},
1813 {TIPC_NLA_STATS_LINK_CONGS, s->link_congs},
1814 {TIPC_NLA_STATS_MAX_QUEUE, s->max_queue_sz},
1815 {TIPC_NLA_STATS_AVG_QUEUE, s->queue_sz_counts ?
1816 (s->accu_queue_sz / s->queue_sz_counts) : 0}
1817 };
1818
1819 stats = nla_nest_start(skb, TIPC_NLA_LINK_STATS);
1820 if (!stats)
1821 return -EMSGSIZE;
1822
1823 for (i = 0; i < ARRAY_SIZE(map); i++)
1824 if (nla_put_u32(skb, map[i].key, map[i].val))
1825 goto msg_full;
1826
1827 nla_nest_end(skb, stats);
1828
1829 return 0;
1830msg_full:
1831 nla_nest_cancel(skb, stats);
1832
1833 return -EMSGSIZE;
1834}
1835
1836/* Caller should hold appropriate locks to protect the link */
Jon Paul Maloy5be9c082015-11-19 14:30:45 -05001837int __tipc_nl_add_link(struct net *net, struct tipc_nl_msg *msg,
1838 struct tipc_link *link, int nlflags)
Richard Alpe7be57fc2014-11-20 10:29:12 +01001839{
1840 int err;
1841 void *hdr;
1842 struct nlattr *attrs;
1843 struct nlattr *prop;
Ying Xue34747532015-01-09 15:27:10 +08001844 struct tipc_net *tn = net_generic(net, tipc_net_id);
Richard Alpe7be57fc2014-11-20 10:29:12 +01001845
Richard Alpebfb3e5d2015-02-09 09:50:03 +01001846 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
Nicolas Dichtelf2f67392015-04-28 18:33:50 +02001847 nlflags, TIPC_NL_LINK_GET);
Richard Alpe7be57fc2014-11-20 10:29:12 +01001848 if (!hdr)
1849 return -EMSGSIZE;
1850
1851 attrs = nla_nest_start(msg->skb, TIPC_NLA_LINK);
1852 if (!attrs)
1853 goto msg_full;
1854
1855 if (nla_put_string(msg->skb, TIPC_NLA_LINK_NAME, link->name))
1856 goto attr_msg_full;
1857 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_DEST,
Ying Xue34747532015-01-09 15:27:10 +08001858 tipc_cluster_mask(tn->own_addr)))
Richard Alpe7be57fc2014-11-20 10:29:12 +01001859 goto attr_msg_full;
Jon Paul Maloyed193ec2015-04-02 09:33:02 -04001860 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_MTU, link->mtu))
Richard Alpe7be57fc2014-11-20 10:29:12 +01001861 goto attr_msg_full;
Jon Paul Maloya97b9d32015-05-14 10:46:15 -04001862 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_RX, link->rcv_nxt))
Richard Alpe7be57fc2014-11-20 10:29:12 +01001863 goto attr_msg_full;
Jon Paul Maloya97b9d32015-05-14 10:46:15 -04001864 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_TX, link->snd_nxt))
Richard Alpe7be57fc2014-11-20 10:29:12 +01001865 goto attr_msg_full;
1866
1867 if (tipc_link_is_up(link))
1868 if (nla_put_flag(msg->skb, TIPC_NLA_LINK_UP))
1869 goto attr_msg_full;
Jon Paul Maloyc72fa872015-10-22 08:51:46 -04001870 if (link->active)
Richard Alpe7be57fc2014-11-20 10:29:12 +01001871 if (nla_put_flag(msg->skb, TIPC_NLA_LINK_ACTIVE))
1872 goto attr_msg_full;
1873
1874 prop = nla_nest_start(msg->skb, TIPC_NLA_LINK_PROP);
1875 if (!prop)
1876 goto attr_msg_full;
1877 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, link->priority))
1878 goto prop_msg_full;
1879 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_TOL, link->tolerance))
1880 goto prop_msg_full;
1881 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN,
Jon Paul Maloy1f66d162015-03-25 12:07:24 -04001882 link->window))
Richard Alpe7be57fc2014-11-20 10:29:12 +01001883 goto prop_msg_full;
1884 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, link->priority))
1885 goto prop_msg_full;
1886 nla_nest_end(msg->skb, prop);
1887
1888 err = __tipc_nl_add_stats(msg->skb, &link->stats);
1889 if (err)
1890 goto attr_msg_full;
1891
1892 nla_nest_end(msg->skb, attrs);
1893 genlmsg_end(msg->skb, hdr);
1894
1895 return 0;
1896
1897prop_msg_full:
1898 nla_nest_cancel(msg->skb, prop);
1899attr_msg_full:
1900 nla_nest_cancel(msg->skb, attrs);
1901msg_full:
1902 genlmsg_cancel(msg->skb, hdr);
1903
1904 return -EMSGSIZE;
1905}
Jon Paul Maloy38206d52015-11-19 14:30:46 -05001906
1907static int __tipc_nl_add_bc_link_stat(struct sk_buff *skb,
1908 struct tipc_stats *stats)
1909{
1910 int i;
1911 struct nlattr *nest;
1912
1913 struct nla_map {
1914 __u32 key;
1915 __u32 val;
1916 };
1917
1918 struct nla_map map[] = {
1919 {TIPC_NLA_STATS_RX_INFO, stats->recv_info},
1920 {TIPC_NLA_STATS_RX_FRAGMENTS, stats->recv_fragments},
1921 {TIPC_NLA_STATS_RX_FRAGMENTED, stats->recv_fragmented},
1922 {TIPC_NLA_STATS_RX_BUNDLES, stats->recv_bundles},
1923 {TIPC_NLA_STATS_RX_BUNDLED, stats->recv_bundled},
1924 {TIPC_NLA_STATS_TX_INFO, stats->sent_info},
1925 {TIPC_NLA_STATS_TX_FRAGMENTS, stats->sent_fragments},
1926 {TIPC_NLA_STATS_TX_FRAGMENTED, stats->sent_fragmented},
1927 {TIPC_NLA_STATS_TX_BUNDLES, stats->sent_bundles},
1928 {TIPC_NLA_STATS_TX_BUNDLED, stats->sent_bundled},
1929 {TIPC_NLA_STATS_RX_NACKS, stats->recv_nacks},
1930 {TIPC_NLA_STATS_RX_DEFERRED, stats->deferred_recv},
1931 {TIPC_NLA_STATS_TX_NACKS, stats->sent_nacks},
1932 {TIPC_NLA_STATS_TX_ACKS, stats->sent_acks},
1933 {TIPC_NLA_STATS_RETRANSMITTED, stats->retransmitted},
1934 {TIPC_NLA_STATS_DUPLICATES, stats->duplicates},
1935 {TIPC_NLA_STATS_LINK_CONGS, stats->link_congs},
1936 {TIPC_NLA_STATS_MAX_QUEUE, stats->max_queue_sz},
1937 {TIPC_NLA_STATS_AVG_QUEUE, stats->queue_sz_counts ?
1938 (stats->accu_queue_sz / stats->queue_sz_counts) : 0}
1939 };
1940
1941 nest = nla_nest_start(skb, TIPC_NLA_LINK_STATS);
1942 if (!nest)
1943 return -EMSGSIZE;
1944
1945 for (i = 0; i < ARRAY_SIZE(map); i++)
1946 if (nla_put_u32(skb, map[i].key, map[i].val))
1947 goto msg_full;
1948
1949 nla_nest_end(skb, nest);
1950
1951 return 0;
1952msg_full:
1953 nla_nest_cancel(skb, nest);
1954
1955 return -EMSGSIZE;
1956}
1957
1958int tipc_nl_add_bc_link(struct net *net, struct tipc_nl_msg *msg)
1959{
1960 int err;
1961 void *hdr;
1962 struct nlattr *attrs;
1963 struct nlattr *prop;
1964 struct tipc_net *tn = net_generic(net, tipc_net_id);
1965 struct tipc_link *bcl = tn->bcl;
1966
1967 if (!bcl)
1968 return 0;
1969
1970 tipc_bcast_lock(net);
1971
1972 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
1973 NLM_F_MULTI, TIPC_NL_LINK_GET);
1974 if (!hdr)
1975 return -EMSGSIZE;
1976
1977 attrs = nla_nest_start(msg->skb, TIPC_NLA_LINK);
1978 if (!attrs)
1979 goto msg_full;
1980
1981 /* The broadcast link is always up */
1982 if (nla_put_flag(msg->skb, TIPC_NLA_LINK_UP))
1983 goto attr_msg_full;
1984
1985 if (nla_put_flag(msg->skb, TIPC_NLA_LINK_BROADCAST))
1986 goto attr_msg_full;
1987 if (nla_put_string(msg->skb, TIPC_NLA_LINK_NAME, bcl->name))
1988 goto attr_msg_full;
1989 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_RX, bcl->rcv_nxt))
1990 goto attr_msg_full;
1991 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_TX, bcl->snd_nxt))
1992 goto attr_msg_full;
1993
1994 prop = nla_nest_start(msg->skb, TIPC_NLA_LINK_PROP);
1995 if (!prop)
1996 goto attr_msg_full;
1997 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN, bcl->window))
1998 goto prop_msg_full;
1999 nla_nest_end(msg->skb, prop);
2000
2001 err = __tipc_nl_add_bc_link_stat(msg->skb, &bcl->stats);
2002 if (err)
2003 goto attr_msg_full;
2004
2005 tipc_bcast_unlock(net);
2006 nla_nest_end(msg->skb, attrs);
2007 genlmsg_end(msg->skb, hdr);
2008
2009 return 0;
2010
2011prop_msg_full:
2012 nla_nest_cancel(msg->skb, prop);
2013attr_msg_full:
2014 nla_nest_cancel(msg->skb, attrs);
2015msg_full:
2016 tipc_bcast_unlock(net);
2017 genlmsg_cancel(msg->skb, hdr);
2018
2019 return -EMSGSIZE;
2020}
2021
2022void tipc_link_set_tolerance(struct tipc_link *l, u32 tol)
2023{
2024 l->tolerance = tol;
2025 tipc_link_proto_xmit(l, STATE_MSG, 0, 0, tol, 0);
2026}
2027
2028void tipc_link_set_prio(struct tipc_link *l, u32 prio)
2029{
2030 l->priority = prio;
2031 tipc_link_proto_xmit(l, STATE_MSG, 0, 0, 0, prio);
2032}
2033
2034void tipc_link_set_abort_limit(struct tipc_link *l, u32 limit)
2035{
2036 l->abort_limit = limit;
2037}