blob: 4738cb1bf7c0cd130104e1eb3021b2d35483bc9f [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
2 * net/tipc/link.c: TIPC link code
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Jon Paul Maloy170b3922014-01-07 17:02:41 -05004 * Copyright (c) 1996-2007, 2012-2014, Ericsson AB
Ying Xue198d73b2013-06-17 10:54:42 -04005 * Copyright (c) 2004-2007, 2010-2013, Wind River Systems
Per Lidenb97bf3f2006-01-02 19:04:38 +01006 * All rights reserved.
7 *
Per Liden9ea1fd32006-01-11 13:30:43 +01008 * Redistribution and use in source and binary forms, with or without
Per Lidenb97bf3f2006-01-02 19:04:38 +01009 * modification, are permitted provided that the following conditions are met:
10 *
Per Liden9ea1fd32006-01-11 13:30:43 +010011 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the names of the copyright holders nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
Per Lidenb97bf3f2006-01-02 19:04:38 +010019 *
Per Liden9ea1fd32006-01-11 13:30:43 +010020 * Alternatively, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") version 2 as published by the Free
22 * Software Foundation.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Per Lidenb97bf3f2006-01-02 19:04:38 +010034 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include "core.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010038#include "link.h"
Richard Alpe7be57fc2014-11-20 10:29:12 +010039#include "bcast.h"
Jon Paul Maloy9816f062014-05-14 05:39:15 -040040#include "socket.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010041#include "name_distr.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010042#include "discover.h"
43#include "config.h"
Richard Alpe0655f6a2014-11-20 10:29:07 +010044#include "netlink.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010045
Ying Xue796c75d2013-06-17 10:54:48 -040046#include <linux/pkt_sched.h>
47
Erik Hugne2cf8aa12012-06-29 00:16:37 -040048/*
49 * Error message prefixes
50 */
51static const char *link_co_err = "Link changeover error, ";
52static const char *link_rst_msg = "Resetting link ";
53static const char *link_unk_evt = "Unknown link event ";
Per Lidenb97bf3f2006-01-02 19:04:38 +010054
Richard Alpe7be57fc2014-11-20 10:29:12 +010055static const struct nla_policy tipc_nl_link_policy[TIPC_NLA_LINK_MAX + 1] = {
56 [TIPC_NLA_LINK_UNSPEC] = { .type = NLA_UNSPEC },
57 [TIPC_NLA_LINK_NAME] = {
58 .type = NLA_STRING,
59 .len = TIPC_MAX_LINK_NAME
60 },
61 [TIPC_NLA_LINK_MTU] = { .type = NLA_U32 },
62 [TIPC_NLA_LINK_BROADCAST] = { .type = NLA_FLAG },
63 [TIPC_NLA_LINK_UP] = { .type = NLA_FLAG },
64 [TIPC_NLA_LINK_ACTIVE] = { .type = NLA_FLAG },
65 [TIPC_NLA_LINK_PROP] = { .type = NLA_NESTED },
66 [TIPC_NLA_LINK_STATS] = { .type = NLA_NESTED },
67 [TIPC_NLA_LINK_RX] = { .type = NLA_U32 },
68 [TIPC_NLA_LINK_TX] = { .type = NLA_U32 }
69};
70
Richard Alpe0655f6a2014-11-20 10:29:07 +010071/* Properties valid for media, bearar and link */
72static const struct nla_policy tipc_nl_prop_policy[TIPC_NLA_PROP_MAX + 1] = {
73 [TIPC_NLA_PROP_UNSPEC] = { .type = NLA_UNSPEC },
74 [TIPC_NLA_PROP_PRIO] = { .type = NLA_U32 },
75 [TIPC_NLA_PROP_TOL] = { .type = NLA_U32 },
76 [TIPC_NLA_PROP_WIN] = { .type = NLA_U32 }
77};
78
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090079/*
Allan Stephensa686e682008-06-04 17:29:39 -070080 * Out-of-range value for link session numbers
81 */
Allan Stephensa686e682008-06-04 17:29:39 -070082#define INVALID_SESSION 0x10000
83
84/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090085 * Link state events:
Per Lidenb97bf3f2006-01-02 19:04:38 +010086 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010087#define STARTING_EVT 856384768 /* link processing trigger */
88#define TRAFFIC_MSG_EVT 560815u /* rx'd ??? */
89#define TIMEOUT_EVT 560817u /* link timer expired */
90
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090091/*
92 * The following two 'message types' is really just implementation
93 * data conveniently stored in the message header.
Per Lidenb97bf3f2006-01-02 19:04:38 +010094 * They must not be considered part of the protocol
95 */
96#define OPEN_MSG 0
97#define CLOSED_MSG 1
98
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090099/*
Per Lidenb97bf3f2006-01-02 19:04:38 +0100100 * State value stored in 'exp_msg_count'
101 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100102#define START_CHANGEOVER 100000u
103
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500104static void link_handle_out_of_seq_msg(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100105 struct sk_buff *buf);
Ying Xue247f0f32014-02-18 16:06:46 +0800106static void tipc_link_proto_rcv(struct tipc_link *l_ptr, struct sk_buff *buf);
Jon Paul Maloy3bb53382014-02-13 17:29:12 -0500107static int tipc_link_tunnel_rcv(struct tipc_node *n_ptr,
Jon Paul Maloy170b3922014-01-07 17:02:41 -0500108 struct sk_buff **buf);
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500109static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tolerance);
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500110static void link_state_event(struct tipc_link *l_ptr, u32 event);
111static void link_reset_statistics(struct tipc_link *l_ptr);
112static void link_print(struct tipc_link *l_ptr, const char *str);
Ying Xue247f0f32014-02-18 16:06:46 +0800113static void tipc_link_sync_xmit(struct tipc_link *l);
114static void tipc_link_sync_rcv(struct tipc_node *n, struct sk_buff *buf);
Erik Hugne7ae934b2014-07-01 10:22:40 +0200115static int tipc_link_input(struct tipc_link *l, struct sk_buff *buf);
116static int tipc_link_prepare_input(struct tipc_link *l, struct sk_buff **buf);
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000117
Per Lidenb97bf3f2006-01-02 19:04:38 +0100118/*
Sam Ravnborg05790c62006-03-20 22:37:04 -0800119 * Simple link routines
Per Lidenb97bf3f2006-01-02 19:04:38 +0100120 */
Sam Ravnborg05790c62006-03-20 22:37:04 -0800121static unsigned int align(unsigned int i)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100122{
123 return (i + 3) & ~3u;
124}
125
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500126static void link_init_max_pkt(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100127{
Ying Xue7a2f7d12014-04-21 10:55:46 +0800128 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100129 u32 max_pkt;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900130
Ying Xue7a2f7d12014-04-21 10:55:46 +0800131 rcu_read_lock();
132 b_ptr = rcu_dereference_rtnl(bearer_list[l_ptr->bearer_id]);
133 if (!b_ptr) {
134 rcu_read_unlock();
135 return;
136 }
137 max_pkt = (b_ptr->mtu & ~3);
138 rcu_read_unlock();
139
Per Lidenb97bf3f2006-01-02 19:04:38 +0100140 if (max_pkt > MAX_MSG_SIZE)
141 max_pkt = MAX_MSG_SIZE;
142
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900143 l_ptr->max_pkt_target = max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100144 if (l_ptr->max_pkt_target < MAX_PKT_DEFAULT)
145 l_ptr->max_pkt = l_ptr->max_pkt_target;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900146 else
Per Lidenb97bf3f2006-01-02 19:04:38 +0100147 l_ptr->max_pkt = MAX_PKT_DEFAULT;
148
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900149 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100150}
151
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500152static u32 link_next_sent(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100153{
154 if (l_ptr->next_out)
Allan Stephensf9057302011-10-24 16:03:12 -0400155 return buf_seqno(l_ptr->next_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100156 return mod(l_ptr->next_out_no);
157}
158
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500159static u32 link_last_sent(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100160{
161 return mod(link_next_sent(l_ptr) - 1);
162}
163
164/*
Sam Ravnborg05790c62006-03-20 22:37:04 -0800165 * Simple non-static link routines (i.e. referenced outside this file)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100166 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500167int tipc_link_is_up(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100168{
169 if (!l_ptr)
170 return 0;
Eric Dumazeta02cec22010-09-22 20:43:57 +0000171 return link_working_working(l_ptr) || link_working_unknown(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100172}
173
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500174int tipc_link_is_active(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100175{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000176 return (l_ptr->owner->active_links[0] == l_ptr) ||
177 (l_ptr->owner->active_links[1] == l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100178}
179
180/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100181 * link_timeout - handle expiration of link timer
182 * @l_ptr: pointer to link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100183 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500184static void link_timeout(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100185{
Per Liden4323add2006-01-18 00:38:21 +0100186 tipc_node_lock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100187
188 /* update counters used in statistical profiling of send traffic */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100189 l_ptr->stats.accu_queue_sz += l_ptr->out_queue_size;
190 l_ptr->stats.queue_sz_counts++;
191
Per Lidenb97bf3f2006-01-02 19:04:38 +0100192 if (l_ptr->first_out) {
193 struct tipc_msg *msg = buf_msg(l_ptr->first_out);
194 u32 length = msg_size(msg);
195
Joe Perchesf64f9e72009-11-29 16:55:45 -0800196 if ((msg_user(msg) == MSG_FRAGMENTER) &&
197 (msg_type(msg) == FIRST_FRAGMENT)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100198 length = msg_size(msg_get_wrapped(msg));
199 }
200 if (length) {
201 l_ptr->stats.msg_lengths_total += length;
202 l_ptr->stats.msg_length_counts++;
203 if (length <= 64)
204 l_ptr->stats.msg_length_profile[0]++;
205 else if (length <= 256)
206 l_ptr->stats.msg_length_profile[1]++;
207 else if (length <= 1024)
208 l_ptr->stats.msg_length_profile[2]++;
209 else if (length <= 4096)
210 l_ptr->stats.msg_length_profile[3]++;
211 else if (length <= 16384)
212 l_ptr->stats.msg_length_profile[4]++;
213 else if (length <= 32768)
214 l_ptr->stats.msg_length_profile[5]++;
215 else
216 l_ptr->stats.msg_length_profile[6]++;
217 }
218 }
219
220 /* do all other link processing performed on a periodic basis */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100221
222 link_state_event(l_ptr, TIMEOUT_EVT);
223
224 if (l_ptr->next_out)
Per Liden4323add2006-01-18 00:38:21 +0100225 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100226
Per Liden4323add2006-01-18 00:38:21 +0100227 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100228}
229
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500230static void link_set_timer(struct tipc_link *l_ptr, u32 time)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100231{
232 k_start_timer(&l_ptr->timer, time);
233}
234
235/**
Per Liden4323add2006-01-18 00:38:21 +0100236 * tipc_link_create - create a new link
Allan Stephens37b9c082011-02-28 11:32:27 -0500237 * @n_ptr: pointer to associated node
Per Lidenb97bf3f2006-01-02 19:04:38 +0100238 * @b_ptr: pointer to associated bearer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100239 * @media_addr: media address to use when sending messages over link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900240 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100241 * Returns pointer to link.
242 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500243struct tipc_link *tipc_link_create(struct tipc_node *n_ptr,
Ying Xuec61dd612014-02-13 17:29:09 -0500244 struct tipc_bearer *b_ptr,
245 const struct tipc_media_addr *media_addr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100246{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500247 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100248 struct tipc_msg *msg;
249 char *if_name;
Allan Stephens37b9c082011-02-28 11:32:27 -0500250 char addr_string[16];
251 u32 peer = n_ptr->addr;
252
Holger Brunck0372bf52014-11-14 18:33:19 +0100253 if (n_ptr->link_cnt >= MAX_BEARERS) {
Allan Stephens37b9c082011-02-28 11:32:27 -0500254 tipc_addr_string_fill(addr_string, n_ptr->addr);
Holger Brunck0372bf52014-11-14 18:33:19 +0100255 pr_err("Attempt to establish %uth link to %s. Max %u allowed.\n",
256 n_ptr->link_cnt, addr_string, MAX_BEARERS);
Allan Stephens37b9c082011-02-28 11:32:27 -0500257 return NULL;
258 }
259
260 if (n_ptr->links[b_ptr->identity]) {
261 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400262 pr_err("Attempt to establish second link on <%s> to %s\n",
263 b_ptr->name, addr_string);
Allan Stephens37b9c082011-02-28 11:32:27 -0500264 return NULL;
265 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100266
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700267 l_ptr = kzalloc(sizeof(*l_ptr), GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100268 if (!l_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400269 pr_warn("Link creation failed, no memory\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100270 return NULL;
271 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100272
273 l_ptr->addr = peer;
Allan Stephens2d627b92011-01-07 13:00:11 -0500274 if_name = strchr(b_ptr->name, ':') + 1;
Allan Stephens062b4c92011-04-07 09:28:47 -0400275 sprintf(l_ptr->name, "%u.%u.%u:%s-%u.%u.%u:unknown",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100276 tipc_zone(tipc_own_addr), tipc_cluster(tipc_own_addr),
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900277 tipc_node(tipc_own_addr),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100278 if_name,
279 tipc_zone(peer), tipc_cluster(peer), tipc_node(peer));
Allan Stephens062b4c92011-04-07 09:28:47 -0400280 /* note: peer i/f name is updated by reset/activate message */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100281 memcpy(&l_ptr->media_addr, media_addr, sizeof(*media_addr));
Allan Stephens37b9c082011-02-28 11:32:27 -0500282 l_ptr->owner = n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100283 l_ptr->checkpoint = 1;
Allan Stephensf882cb72011-04-07 09:43:27 -0400284 l_ptr->peer_session = INVALID_SESSION;
Ying Xue7a2f7d12014-04-21 10:55:46 +0800285 l_ptr->bearer_id = b_ptr->identity;
Allan Stephens5c216e12011-10-18 11:34:29 -0400286 link_set_supervision_props(l_ptr, b_ptr->tolerance);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100287 l_ptr->state = RESET_UNKNOWN;
288
289 l_ptr->pmsg = (struct tipc_msg *)&l_ptr->proto_msg;
290 msg = l_ptr->pmsg;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000291 tipc_msg_init(msg, LINK_PROTOCOL, RESET_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100292 msg_set_size(msg, sizeof(l_ptr->proto_msg));
Allan Stephensa686e682008-06-04 17:29:39 -0700293 msg_set_session(msg, (tipc_random & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100294 msg_set_bearer_id(msg, b_ptr->identity);
295 strcpy((char *)msg_data(msg), if_name);
296
297 l_ptr->priority = b_ptr->priority;
Allan Stephens5c216e12011-10-18 11:34:29 -0400298 tipc_link_set_queue_limits(l_ptr, b_ptr->window);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100299
Ying Xue7a2f7d12014-04-21 10:55:46 +0800300 l_ptr->net_plane = b_ptr->net_plane;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100301 link_init_max_pkt(l_ptr);
302
303 l_ptr->next_out_no = 1;
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400304 __skb_queue_head_init(&l_ptr->waiting_sks);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100305
306 link_reset_statistics(l_ptr);
307
Allan Stephens37b9c082011-02-28 11:32:27 -0500308 tipc_node_attach_link(n_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100309
Jon Paul Maloy170b3922014-01-07 17:02:41 -0500310 k_init_timer(&l_ptr->timer, (Handler)link_timeout,
311 (unsigned long)l_ptr);
Jon Paul Maloy581465f2014-01-07 17:02:44 -0500312
313 link_state_event(l_ptr, STARTING_EVT);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100314
Per Lidenb97bf3f2006-01-02 19:04:38 +0100315 return l_ptr;
316}
317
Jon Paul Maloy7d339392014-02-13 17:29:16 -0500318void tipc_link_delete_list(unsigned int bearer_id, bool shutting_down)
Ying Xue8d8439b2014-02-13 17:29:07 -0500319{
320 struct tipc_link *l_ptr;
Ying Xuec61dd612014-02-13 17:29:09 -0500321 struct tipc_node *n_ptr;
Ying Xue8d8439b2014-02-13 17:29:07 -0500322
Ying Xue6c7a7622014-03-27 12:54:37 +0800323 rcu_read_lock();
324 list_for_each_entry_rcu(n_ptr, &tipc_node_list, list) {
Ying Xue5356f3d2014-05-05 08:56:09 +0800325 tipc_node_lock(n_ptr);
Ying Xuec61dd612014-02-13 17:29:09 -0500326 l_ptr = n_ptr->links[bearer_id];
327 if (l_ptr) {
328 tipc_link_reset(l_ptr);
Jon Paul Maloy7d339392014-02-13 17:29:16 -0500329 if (shutting_down || !tipc_node_is_up(n_ptr)) {
330 tipc_node_detach_link(l_ptr->owner, l_ptr);
331 tipc_link_reset_fragments(l_ptr);
Ying Xue5356f3d2014-05-05 08:56:09 +0800332 tipc_node_unlock(n_ptr);
Ying Xuec61dd612014-02-13 17:29:09 -0500333
Jon Paul Maloy7d339392014-02-13 17:29:16 -0500334 /* Nobody else can access this link now: */
335 del_timer_sync(&l_ptr->timer);
336 kfree(l_ptr);
337 } else {
338 /* Detach/delete when failover is finished: */
339 l_ptr->flags |= LINK_STOPPED;
Ying Xue5356f3d2014-05-05 08:56:09 +0800340 tipc_node_unlock(n_ptr);
Jon Paul Maloy7d339392014-02-13 17:29:16 -0500341 del_timer_sync(&l_ptr->timer);
342 }
Ying Xuec61dd612014-02-13 17:29:09 -0500343 continue;
344 }
Ying Xue5356f3d2014-05-05 08:56:09 +0800345 tipc_node_unlock(n_ptr);
Ying Xue8d8439b2014-02-13 17:29:07 -0500346 }
Ying Xue6c7a7622014-03-27 12:54:37 +0800347 rcu_read_unlock();
Ying Xue8d8439b2014-02-13 17:29:07 -0500348}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100349
350/**
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400351 * link_schedule_user - schedule user for wakeup after congestion
352 * @link: congested link
353 * @oport: sending port
354 * @chain_sz: size of buffer chain that was attempted sent
355 * @imp: importance of message attempted sent
356 * Create pseudo msg to send back to user when congestion abates
Per Lidenb97bf3f2006-01-02 19:04:38 +0100357 */
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400358static bool link_schedule_user(struct tipc_link *link, u32 oport,
359 uint chain_sz, uint imp)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100360{
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400361 struct sk_buff *buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100362
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400363 buf = tipc_msg_create(SOCK_WAKEUP, 0, INT_H_SIZE, 0, tipc_own_addr,
364 tipc_own_addr, oport, 0, 0);
365 if (!buf)
366 return false;
367 TIPC_SKB_CB(buf)->chain_sz = chain_sz;
368 TIPC_SKB_CB(buf)->chain_imp = imp;
369 __skb_queue_tail(&link->waiting_sks, buf);
370 link->stats.link_congs++;
371 return true;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100372}
373
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400374/**
375 * link_prepare_wakeup - prepare users for wakeup after congestion
376 * @link: congested link
377 * Move a number of waiting users, as permitted by available space in
378 * the send queue, from link wait queue to node wait queue for wakeup
379 */
380static void link_prepare_wakeup(struct tipc_link *link)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100381{
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400382 struct sk_buff_head *wq = &link->waiting_sks;
383 struct sk_buff *buf;
384 uint pend_qsz = link->out_queue_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100385
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400386 for (buf = skb_peek(wq); buf; buf = skb_peek(wq)) {
387 if (pend_qsz >= link->queue_limit[TIPC_SKB_CB(buf)->chain_imp])
Per Lidenb97bf3f2006-01-02 19:04:38 +0100388 break;
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400389 pend_qsz += TIPC_SKB_CB(buf)->chain_sz;
390 __skb_queue_tail(&link->owner->waiting_sks, __skb_dequeue(wq));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100391 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100392}
393
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900394/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100395 * link_release_outqueue - purge link's outbound message queue
396 * @l_ptr: pointer to link
397 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500398static void link_release_outqueue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100399{
Ying Xued77b3832013-12-10 20:45:38 -0800400 kfree_skb_list(l_ptr->first_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100401 l_ptr->first_out = NULL;
402 l_ptr->out_queue_size = 0;
403}
404
405/**
Per Liden4323add2006-01-18 00:38:21 +0100406 * tipc_link_reset_fragments - purge link's inbound message fragments queue
Per Lidenb97bf3f2006-01-02 19:04:38 +0100407 * @l_ptr: pointer to link
408 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500409void tipc_link_reset_fragments(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100410{
Jon Paul Maloy37e22162014-05-14 05:39:12 -0400411 kfree_skb(l_ptr->reasm_buf);
412 l_ptr->reasm_buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100413}
414
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900415/**
Jon Paul Maloy581465f2014-01-07 17:02:44 -0500416 * tipc_link_purge_queues - purge all pkt queues associated with link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100417 * @l_ptr: pointer to link
418 */
Jon Paul Maloy581465f2014-01-07 17:02:44 -0500419void tipc_link_purge_queues(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100420{
Ying Xued77b3832013-12-10 20:45:38 -0800421 kfree_skb_list(l_ptr->oldest_deferred_in);
422 kfree_skb_list(l_ptr->first_out);
Per Liden4323add2006-01-18 00:38:21 +0100423 tipc_link_reset_fragments(l_ptr);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400424 kfree_skb(l_ptr->proto_msg_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100425 l_ptr->proto_msg_queue = NULL;
426}
427
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500428void tipc_link_reset(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100429{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100430 u32 prev_state = l_ptr->state;
431 u32 checkpoint = l_ptr->next_in_no;
Allan Stephens5392d642006-06-25 23:52:50 -0700432 int was_active_link = tipc_link_is_active(l_ptr);
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400433 struct tipc_node *owner = l_ptr->owner;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900434
Allan Stephensa686e682008-06-04 17:29:39 -0700435 msg_set_session(l_ptr->pmsg, ((msg_session(l_ptr->pmsg) + 1) & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100436
Allan Stephensa686e682008-06-04 17:29:39 -0700437 /* Link is down, accept any session */
438 l_ptr->peer_session = INVALID_SESSION;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100439
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900440 /* Prepare for max packet size negotiation */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100441 link_init_max_pkt(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900442
Per Lidenb97bf3f2006-01-02 19:04:38 +0100443 l_ptr->state = RESET_UNKNOWN;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100444
445 if ((prev_state == RESET_UNKNOWN) || (prev_state == RESET_RESET))
446 return;
447
Per Liden4323add2006-01-18 00:38:21 +0100448 tipc_node_link_down(l_ptr->owner, l_ptr);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800449 tipc_bearer_remove_dest(l_ptr->bearer_id, l_ptr->addr);
Paul Gortmaker7368ddf2010-10-12 14:25:58 +0000450
Jon Paul Maloyb9d4c332014-01-07 17:02:42 -0500451 if (was_active_link && tipc_node_active_links(l_ptr->owner)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100452 l_ptr->reset_checkpoint = checkpoint;
453 l_ptr->exp_msg_count = START_CHANGEOVER;
454 }
455
456 /* Clean up all queues: */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100457 link_release_outqueue(l_ptr);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400458 kfree_skb(l_ptr->proto_msg_queue);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100459 l_ptr->proto_msg_queue = NULL;
Ying Xued77b3832013-12-10 20:45:38 -0800460 kfree_skb_list(l_ptr->oldest_deferred_in);
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400461 if (!skb_queue_empty(&l_ptr->waiting_sks)) {
462 skb_queue_splice_init(&l_ptr->waiting_sks, &owner->waiting_sks);
463 owner->action_flags |= TIPC_WAKEUP_USERS;
464 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100465 l_ptr->retransm_queue_head = 0;
466 l_ptr->retransm_queue_size = 0;
467 l_ptr->last_out = NULL;
468 l_ptr->first_out = NULL;
469 l_ptr->next_out = NULL;
470 l_ptr->unacked_window = 0;
471 l_ptr->checkpoint = 1;
472 l_ptr->next_out_no = 1;
473 l_ptr->deferred_inqueue_sz = 0;
474 l_ptr->oldest_deferred_in = NULL;
475 l_ptr->newest_deferred_in = NULL;
476 l_ptr->fsm_msg_cnt = 0;
477 l_ptr->stale_count = 0;
478 link_reset_statistics(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100479}
480
Ying Xuec61dd612014-02-13 17:29:09 -0500481void tipc_link_reset_list(unsigned int bearer_id)
Ying Xuee0ca2c32014-02-13 17:29:06 -0500482{
483 struct tipc_link *l_ptr;
Ying Xuec61dd612014-02-13 17:29:09 -0500484 struct tipc_node *n_ptr;
Ying Xuee0ca2c32014-02-13 17:29:06 -0500485
Ying Xue6c7a7622014-03-27 12:54:37 +0800486 rcu_read_lock();
487 list_for_each_entry_rcu(n_ptr, &tipc_node_list, list) {
Ying Xue5356f3d2014-05-05 08:56:09 +0800488 tipc_node_lock(n_ptr);
Ying Xuec61dd612014-02-13 17:29:09 -0500489 l_ptr = n_ptr->links[bearer_id];
490 if (l_ptr)
491 tipc_link_reset(l_ptr);
Ying Xue5356f3d2014-05-05 08:56:09 +0800492 tipc_node_unlock(n_ptr);
Ying Xuee0ca2c32014-02-13 17:29:06 -0500493 }
Ying Xue6c7a7622014-03-27 12:54:37 +0800494 rcu_read_unlock();
Ying Xuee0ca2c32014-02-13 17:29:06 -0500495}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100496
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500497static void link_activate(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100498{
Allan Stephens5392d642006-06-25 23:52:50 -0700499 l_ptr->next_in_no = l_ptr->stats.recv_info = 1;
Per Liden4323add2006-01-18 00:38:21 +0100500 tipc_node_link_up(l_ptr->owner, l_ptr);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800501 tipc_bearer_add_dest(l_ptr->bearer_id, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100502}
503
504/**
505 * link_state_event - link finite state machine
506 * @l_ptr: pointer to link
507 * @event: state machine event to process
508 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000509static void link_state_event(struct tipc_link *l_ptr, unsigned int event)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100510{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500511 struct tipc_link *other;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100512 u32 cont_intv = l_ptr->continuity_interval;
513
Jon Paul Maloy7d339392014-02-13 17:29:16 -0500514 if (l_ptr->flags & LINK_STOPPED)
515 return;
516
Ying Xue135daee2014-02-13 17:29:08 -0500517 if (!(l_ptr->flags & LINK_STARTED) && (event != STARTING_EVT))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100518 return; /* Not yet. */
519
Ying Xue77a7e072013-12-10 20:45:44 -0800520 /* Check whether changeover is going on */
521 if (l_ptr->exp_msg_count) {
Allan Stephensa0168922010-12-31 18:59:35 +0000522 if (event == TIMEOUT_EVT)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100523 link_set_timer(l_ptr, cont_intv);
Ying Xue77a7e072013-12-10 20:45:44 -0800524 return;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100525 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100526
527 switch (l_ptr->state) {
528 case WORKING_WORKING:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100529 switch (event) {
530 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100531 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100532 break;
533 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100534 if (l_ptr->next_in_no != l_ptr->checkpoint) {
535 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100536 if (tipc_bclink_acks_missing(l_ptr->owner)) {
Ying Xue247f0f32014-02-18 16:06:46 +0800537 tipc_link_proto_xmit(l_ptr, STATE_MSG,
538 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100539 l_ptr->fsm_msg_cnt++;
540 } else if (l_ptr->max_pkt < l_ptr->max_pkt_target) {
Ying Xue247f0f32014-02-18 16:06:46 +0800541 tipc_link_proto_xmit(l_ptr, STATE_MSG,
542 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100543 l_ptr->fsm_msg_cnt++;
544 }
545 link_set_timer(l_ptr, cont_intv);
546 break;
547 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100548 l_ptr->state = WORKING_UNKNOWN;
549 l_ptr->fsm_msg_cnt = 0;
Ying Xue247f0f32014-02-18 16:06:46 +0800550 tipc_link_proto_xmit(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100551 l_ptr->fsm_msg_cnt++;
552 link_set_timer(l_ptr, cont_intv / 4);
553 break;
554 case RESET_MSG:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400555 pr_info("%s<%s>, requested by peer\n", link_rst_msg,
556 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100557 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100558 l_ptr->state = RESET_RESET;
559 l_ptr->fsm_msg_cnt = 0;
Ying Xue247f0f32014-02-18 16:06:46 +0800560 tipc_link_proto_xmit(l_ptr, ACTIVATE_MSG,
561 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100562 l_ptr->fsm_msg_cnt++;
563 link_set_timer(l_ptr, cont_intv);
564 break;
565 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400566 pr_err("%s%u in WW state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100567 }
568 break;
569 case WORKING_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100570 switch (event) {
571 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100572 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100573 l_ptr->state = WORKING_WORKING;
574 l_ptr->fsm_msg_cnt = 0;
575 link_set_timer(l_ptr, cont_intv);
576 break;
577 case RESET_MSG:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400578 pr_info("%s<%s>, requested by peer while probing\n",
579 link_rst_msg, l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100580 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100581 l_ptr->state = RESET_RESET;
582 l_ptr->fsm_msg_cnt = 0;
Ying Xue247f0f32014-02-18 16:06:46 +0800583 tipc_link_proto_xmit(l_ptr, ACTIVATE_MSG,
584 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100585 l_ptr->fsm_msg_cnt++;
586 link_set_timer(l_ptr, cont_intv);
587 break;
588 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100589 if (l_ptr->next_in_no != l_ptr->checkpoint) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100590 l_ptr->state = WORKING_WORKING;
591 l_ptr->fsm_msg_cnt = 0;
592 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100593 if (tipc_bclink_acks_missing(l_ptr->owner)) {
Ying Xue247f0f32014-02-18 16:06:46 +0800594 tipc_link_proto_xmit(l_ptr, STATE_MSG,
595 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100596 l_ptr->fsm_msg_cnt++;
597 }
598 link_set_timer(l_ptr, cont_intv);
599 } else if (l_ptr->fsm_msg_cnt < l_ptr->abort_limit) {
Ying Xue247f0f32014-02-18 16:06:46 +0800600 tipc_link_proto_xmit(l_ptr, STATE_MSG,
601 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100602 l_ptr->fsm_msg_cnt++;
603 link_set_timer(l_ptr, cont_intv / 4);
604 } else { /* Link has failed */
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400605 pr_warn("%s<%s>, peer not responding\n",
606 link_rst_msg, l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100607 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100608 l_ptr->state = RESET_UNKNOWN;
609 l_ptr->fsm_msg_cnt = 0;
Ying Xue247f0f32014-02-18 16:06:46 +0800610 tipc_link_proto_xmit(l_ptr, RESET_MSG,
611 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100612 l_ptr->fsm_msg_cnt++;
613 link_set_timer(l_ptr, cont_intv);
614 }
615 break;
616 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400617 pr_err("%s%u in WU state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100618 }
619 break;
620 case RESET_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100621 switch (event) {
622 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100623 break;
624 case ACTIVATE_MSG:
625 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000626 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100627 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100628 l_ptr->state = WORKING_WORKING;
629 l_ptr->fsm_msg_cnt = 0;
630 link_activate(l_ptr);
Ying Xue247f0f32014-02-18 16:06:46 +0800631 tipc_link_proto_xmit(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100632 l_ptr->fsm_msg_cnt++;
Jon Maloyc64f7a62012-11-16 13:51:31 +0800633 if (l_ptr->owner->working_links == 1)
Ying Xue247f0f32014-02-18 16:06:46 +0800634 tipc_link_sync_xmit(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100635 link_set_timer(l_ptr, cont_intv);
636 break;
637 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100638 l_ptr->state = RESET_RESET;
639 l_ptr->fsm_msg_cnt = 0;
Ying Xue247f0f32014-02-18 16:06:46 +0800640 tipc_link_proto_xmit(l_ptr, ACTIVATE_MSG,
641 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100642 l_ptr->fsm_msg_cnt++;
643 link_set_timer(l_ptr, cont_intv);
644 break;
645 case STARTING_EVT:
Ying Xue135daee2014-02-13 17:29:08 -0500646 l_ptr->flags |= LINK_STARTED;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100647 /* fall through */
648 case TIMEOUT_EVT:
Ying Xue247f0f32014-02-18 16:06:46 +0800649 tipc_link_proto_xmit(l_ptr, RESET_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100650 l_ptr->fsm_msg_cnt++;
651 link_set_timer(l_ptr, cont_intv);
652 break;
653 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400654 pr_err("%s%u in RU state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100655 }
656 break;
657 case RESET_RESET:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100658 switch (event) {
659 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100660 case ACTIVATE_MSG:
661 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000662 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100663 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100664 l_ptr->state = WORKING_WORKING;
665 l_ptr->fsm_msg_cnt = 0;
666 link_activate(l_ptr);
Ying Xue247f0f32014-02-18 16:06:46 +0800667 tipc_link_proto_xmit(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100668 l_ptr->fsm_msg_cnt++;
Jon Maloyc64f7a62012-11-16 13:51:31 +0800669 if (l_ptr->owner->working_links == 1)
Ying Xue247f0f32014-02-18 16:06:46 +0800670 tipc_link_sync_xmit(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100671 link_set_timer(l_ptr, cont_intv);
672 break;
673 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100674 break;
675 case TIMEOUT_EVT:
Ying Xue247f0f32014-02-18 16:06:46 +0800676 tipc_link_proto_xmit(l_ptr, ACTIVATE_MSG,
677 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100678 l_ptr->fsm_msg_cnt++;
679 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100680 break;
681 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400682 pr_err("%s%u in RR state\n", link_unk_evt, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100683 }
684 break;
685 default:
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400686 pr_err("Unknown link state %u/%u\n", l_ptr->state, event);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100687 }
688}
689
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500690/* tipc_link_cong: determine return value and how to treat the
691 * sent buffer during link congestion.
692 * - For plain, errorless user data messages we keep the buffer and
693 * return -ELINKONG.
694 * - For all other messages we discard the buffer and return -EHOSTUNREACH
695 * - For TIPC internal messages we also reset the link
696 */
697static int tipc_link_cong(struct tipc_link *link, struct sk_buff *buf)
698{
699 struct tipc_msg *msg = buf_msg(buf);
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500700 uint imp = tipc_msg_tot_importance(msg);
701 u32 oport = msg_tot_origport(msg);
702
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400703 if (unlikely(imp > TIPC_CRITICAL_IMPORTANCE)) {
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500704 pr_warn("%s<%s>, send queue full", link_rst_msg, link->name);
705 tipc_link_reset(link);
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400706 goto drop;
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500707 }
Jon Paul Maloy50100a52014-08-22 18:09:07 -0400708 if (unlikely(msg_errcode(msg)))
709 goto drop;
710 if (unlikely(msg_reroute_cnt(msg)))
711 goto drop;
712 if (TIPC_SKB_CB(buf)->wakeup_pending)
713 return -ELINKCONG;
714 if (link_schedule_user(link, oport, TIPC_SKB_CB(buf)->chain_sz, imp))
715 return -ELINKCONG;
716drop:
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500717 kfree_skb_list(buf);
718 return -EHOSTUNREACH;
719}
720
721/**
Jon Paul Maloy9fbfb8b2014-07-16 20:41:03 -0400722 * __tipc_link_xmit(): same as tipc_link_xmit, but destlink is known & locked
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500723 * @link: link to use
724 * @buf: chain of buffers containing message
725 * Consumes the buffer chain, except when returning -ELINKCONG
726 * Returns 0 if success, otherwise errno: -ELINKCONG, -EMSGSIZE (plain socket
727 * user data messages) or -EHOSTUNREACH (all other messages/senders)
728 * Only the socket functions tipc_send_stream() and tipc_send_packet() need
729 * to act on the return value, since they may need to do more send attempts.
730 */
Jon Paul Maloy9fbfb8b2014-07-16 20:41:03 -0400731int __tipc_link_xmit(struct tipc_link *link, struct sk_buff *buf)
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500732{
733 struct tipc_msg *msg = buf_msg(buf);
734 uint psz = msg_size(msg);
735 uint qsz = link->out_queue_size;
736 uint sndlim = link->queue_limit[0];
737 uint imp = tipc_msg_tot_importance(msg);
738 uint mtu = link->max_pkt;
739 uint ack = mod(link->next_in_no - 1);
740 uint seqno = link->next_out_no;
741 uint bc_last_in = link->owner->bclink.last_in;
742 struct tipc_media_addr *addr = &link->media_addr;
743 struct sk_buff *next = buf->next;
744
745 /* Match queue limits against msg importance: */
746 if (unlikely(qsz >= link->queue_limit[imp]))
747 return tipc_link_cong(link, buf);
748
749 /* Has valid packet limit been used ? */
750 if (unlikely(psz > mtu)) {
751 kfree_skb_list(buf);
752 return -EMSGSIZE;
753 }
754
755 /* Prepare each packet for sending, and add to outqueue: */
756 while (buf) {
757 next = buf->next;
758 msg = buf_msg(buf);
759 msg_set_word(msg, 2, ((ack << 16) | mod(seqno)));
760 msg_set_bcast_ack(msg, bc_last_in);
761
762 if (!link->first_out) {
763 link->first_out = buf;
764 } else if (qsz < sndlim) {
765 link->last_out->next = buf;
766 } else if (tipc_msg_bundle(link->last_out, buf, mtu)) {
767 link->stats.sent_bundled++;
768 buf = next;
769 next = buf->next;
770 continue;
771 } else if (tipc_msg_make_bundle(&buf, mtu, link->addr)) {
772 link->stats.sent_bundled++;
773 link->stats.sent_bundles++;
774 link->last_out->next = buf;
775 if (!link->next_out)
776 link->next_out = buf;
777 } else {
778 link->last_out->next = buf;
779 if (!link->next_out)
780 link->next_out = buf;
781 }
782
783 /* Send packet if possible: */
784 if (likely(++qsz <= sndlim)) {
785 tipc_bearer_send(link->bearer_id, buf, addr);
786 link->next_out = next;
787 link->unacked_window = 0;
788 }
789 seqno++;
790 link->last_out = buf;
791 buf = next;
792 }
793 link->next_out_no = seqno;
794 link->out_queue_size = qsz;
795 return 0;
796}
797
798/**
Jon Paul Maloy9fbfb8b2014-07-16 20:41:03 -0400799 * tipc_link_xmit() is the general link level function for message sending
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500800 * @buf: chain of buffers containing message
801 * @dsz: amount of user data to be sent
802 * @dnode: address of destination node
803 * @selector: a number used for deterministic link selection
804 * Consumes the buffer chain, except when returning -ELINKCONG
805 * Returns 0 if success, otherwise errno: -ELINKCONG,-EHOSTUNREACH,-EMSGSIZE
806 */
Jon Paul Maloy9fbfb8b2014-07-16 20:41:03 -0400807int tipc_link_xmit(struct sk_buff *buf, u32 dnode, u32 selector)
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500808{
809 struct tipc_link *link = NULL;
810 struct tipc_node *node;
811 int rc = -EHOSTUNREACH;
812
813 node = tipc_node_find(dnode);
814 if (node) {
815 tipc_node_lock(node);
816 link = node->active_links[selector & 1];
817 if (link)
Jon Paul Maloy9fbfb8b2014-07-16 20:41:03 -0400818 rc = __tipc_link_xmit(link, buf);
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500819 tipc_node_unlock(node);
820 }
821
822 if (link)
823 return rc;
824
825 if (likely(in_own_node(dnode)))
826 return tipc_sk_rcv(buf);
827
828 kfree_skb_list(buf);
829 return rc;
830}
831
Jon Maloyc64f7a62012-11-16 13:51:31 +0800832/*
Ying Xue247f0f32014-02-18 16:06:46 +0800833 * tipc_link_sync_xmit - synchronize broadcast link endpoints.
Jon Maloyc64f7a62012-11-16 13:51:31 +0800834 *
835 * Give a newly added peer node the sequence number where it should
836 * start receiving and acking broadcast packets.
837 *
838 * Called with node locked
839 */
Jon Paul Maloy25b660c2014-07-16 20:40:59 -0400840static void tipc_link_sync_xmit(struct tipc_link *link)
Jon Maloyc64f7a62012-11-16 13:51:31 +0800841{
842 struct sk_buff *buf;
843 struct tipc_msg *msg;
844
845 buf = tipc_buf_acquire(INT_H_SIZE);
846 if (!buf)
847 return;
848
849 msg = buf_msg(buf);
Jon Paul Maloy25b660c2014-07-16 20:40:59 -0400850 tipc_msg_init(msg, BCAST_PROTOCOL, STATE_MSG, INT_H_SIZE, link->addr);
851 msg_set_last_bcast(msg, link->owner->bclink.acked);
Jon Paul Maloy9fbfb8b2014-07-16 20:41:03 -0400852 __tipc_link_xmit(link, buf);
Jon Maloyc64f7a62012-11-16 13:51:31 +0800853}
854
855/*
Ying Xue247f0f32014-02-18 16:06:46 +0800856 * tipc_link_sync_rcv - synchronize broadcast link endpoints.
Jon Maloyc64f7a62012-11-16 13:51:31 +0800857 * Receive the sequence number where we should start receiving and
858 * acking broadcast packets from a newly added peer node, and open
859 * up for reception of such packets.
860 *
861 * Called with node locked
862 */
Ying Xue247f0f32014-02-18 16:06:46 +0800863static void tipc_link_sync_rcv(struct tipc_node *n, struct sk_buff *buf)
Jon Maloyc64f7a62012-11-16 13:51:31 +0800864{
865 struct tipc_msg *msg = buf_msg(buf);
866
867 n->bclink.last_sent = n->bclink.last_in = msg_last_bcast(msg);
868 n->bclink.recv_permitted = true;
869 kfree_skb(buf);
870}
871
872/*
Per Liden4323add2006-01-18 00:38:21 +0100873 * tipc_link_push_packet: Push one unsent packet to the media
Per Lidenb97bf3f2006-01-02 19:04:38 +0100874 */
stephen hemminger98056962014-01-04 13:47:48 -0800875static u32 tipc_link_push_packet(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100876{
877 struct sk_buff *buf = l_ptr->first_out;
878 u32 r_q_size = l_ptr->retransm_queue_size;
879 u32 r_q_head = l_ptr->retransm_queue_head;
880
881 /* Step to position where retransmission failed, if any, */
882 /* consider that buffers may have been released in meantime */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100883 if (r_q_size && buf) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900884 u32 last = lesser(mod(r_q_head + r_q_size),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100885 link_last_sent(l_ptr));
Allan Stephensf9057302011-10-24 16:03:12 -0400886 u32 first = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100887
888 while (buf && less(first, r_q_head)) {
889 first = mod(first + 1);
890 buf = buf->next;
891 }
892 l_ptr->retransm_queue_head = r_q_head = first;
893 l_ptr->retransm_queue_size = r_q_size = mod(last - first);
894 }
895
896 /* Continue retransmission now, if there is anything: */
Neil Hormanca509102010-03-15 07:58:45 +0000897 if (r_q_size && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100898 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900899 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800900 tipc_bearer_send(l_ptr->bearer_id, buf, &l_ptr->media_addr);
Ying Xue3c294cb2012-11-15 11:34:45 +0800901 l_ptr->retransm_queue_head = mod(++r_q_head);
902 l_ptr->retransm_queue_size = --r_q_size;
903 l_ptr->stats.retransmitted++;
904 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100905 }
906
907 /* Send deferred protocol message, if any: */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100908 buf = l_ptr->proto_msg_queue;
909 if (buf) {
910 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
Allan Stephens0e659672010-12-31 18:59:32 +0000911 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800912 tipc_bearer_send(l_ptr->bearer_id, buf, &l_ptr->media_addr);
Ying Xue3c294cb2012-11-15 11:34:45 +0800913 l_ptr->unacked_window = 0;
914 kfree_skb(buf);
915 l_ptr->proto_msg_queue = NULL;
916 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100917 }
918
919 /* Send one deferred data message, if send window not full: */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100920 buf = l_ptr->next_out;
921 if (buf) {
922 struct tipc_msg *msg = buf_msg(buf);
923 u32 next = msg_seqno(msg);
Allan Stephensf9057302011-10-24 16:03:12 -0400924 u32 first = buf_seqno(l_ptr->first_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100925
926 if (mod(next - first) < l_ptr->queue_limit[0]) {
927 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900928 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800929 tipc_bearer_send(l_ptr->bearer_id, buf,
930 &l_ptr->media_addr);
Ying Xue3c294cb2012-11-15 11:34:45 +0800931 if (msg_user(msg) == MSG_BUNDLER)
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500932 msg_set_type(msg, BUNDLE_CLOSED);
Ying Xue3c294cb2012-11-15 11:34:45 +0800933 l_ptr->next_out = buf->next;
934 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100935 }
936 }
Ying Xue3c294cb2012-11-15 11:34:45 +0800937 return 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100938}
939
940/*
941 * push_queue(): push out the unsent messages of a link where
942 * congestion has abated. Node is locked
943 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500944void tipc_link_push_queue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100945{
946 u32 res;
947
Per Lidenb97bf3f2006-01-02 19:04:38 +0100948 do {
Per Liden4323add2006-01-18 00:38:21 +0100949 res = tipc_link_push_packet(l_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700950 } while (!res);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100951}
952
Ying Xue3f5a12b2014-05-05 08:56:17 +0800953void tipc_link_reset_all(struct tipc_node *node)
Allan Stephensd356eeb2006-06-25 23:40:01 -0700954{
Allan Stephensd356eeb2006-06-25 23:40:01 -0700955 char addr_string[16];
956 u32 i;
957
Ying Xue3f5a12b2014-05-05 08:56:17 +0800958 tipc_node_lock(node);
Allan Stephensd356eeb2006-06-25 23:40:01 -0700959
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400960 pr_warn("Resetting all links to %s\n",
Ying Xue3f5a12b2014-05-05 08:56:17 +0800961 tipc_addr_string_fill(addr_string, node->addr));
Allan Stephensd356eeb2006-06-25 23:40:01 -0700962
963 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xue3f5a12b2014-05-05 08:56:17 +0800964 if (node->links[i]) {
965 link_print(node->links[i], "Resetting link\n");
966 tipc_link_reset(node->links[i]);
Allan Stephensd356eeb2006-06-25 23:40:01 -0700967 }
968 }
969
Ying Xue3f5a12b2014-05-05 08:56:17 +0800970 tipc_node_unlock(node);
Allan Stephensd356eeb2006-06-25 23:40:01 -0700971}
972
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500973static void link_retransmit_failure(struct tipc_link *l_ptr,
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400974 struct sk_buff *buf)
Allan Stephensd356eeb2006-06-25 23:40:01 -0700975{
976 struct tipc_msg *msg = buf_msg(buf);
977
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400978 pr_warn("Retransmission failure on link <%s>\n", l_ptr->name);
Allan Stephensd356eeb2006-06-25 23:40:01 -0700979
980 if (l_ptr->addr) {
Allan Stephensd356eeb2006-06-25 23:40:01 -0700981 /* Handle failure on standard link */
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000982 link_print(l_ptr, "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -0700983 tipc_link_reset(l_ptr);
984
985 } else {
Allan Stephensd356eeb2006-06-25 23:40:01 -0700986 /* Handle failure on broadcast link */
David S. Miller6c000552008-09-02 23:38:32 -0700987 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -0700988 char addr_string[16];
989
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400990 pr_info("Msg seq number: %u, ", msg_seqno(msg));
991 pr_cont("Outstanding acks: %lu\n",
992 (unsigned long) TIPC_SKB_CB(buf)->handle);
Jeff Garzik617dbea2006-10-03 16:25:34 -0700993
Allan Stephens01d83ed2011-01-18 13:53:16 -0500994 n_ptr = tipc_bclink_retransmit_to();
Allan Stephensd356eeb2006-06-25 23:40:01 -0700995 tipc_node_lock(n_ptr);
996
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000997 tipc_addr_string_fill(addr_string, n_ptr->addr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400998 pr_info("Broadcast link info for %s\n", addr_string);
Ying Xue389dd9b2012-11-16 13:51:30 +0800999 pr_info("Reception permitted: %d, Acked: %u\n",
1000 n_ptr->bclink.recv_permitted,
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001001 n_ptr->bclink.acked);
1002 pr_info("Last in: %u, Oos state: %u, Last sent: %u\n",
1003 n_ptr->bclink.last_in,
1004 n_ptr->bclink.oos_state,
1005 n_ptr->bclink.last_sent);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001006
Allan Stephensd356eeb2006-06-25 23:40:01 -07001007 tipc_node_unlock(n_ptr);
1008
Ying Xue3f5a12b2014-05-05 08:56:17 +08001009 tipc_bclink_set_flags(TIPC_BCLINK_RESET);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001010 l_ptr->stale_count = 0;
1011 }
1012}
1013
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001014void tipc_link_retransmit(struct tipc_link *l_ptr, struct sk_buff *buf,
Per Liden4323add2006-01-18 00:38:21 +01001015 u32 retransmits)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001016{
1017 struct tipc_msg *msg;
1018
Allan Stephensd356eeb2006-06-25 23:40:01 -07001019 if (!buf)
1020 return;
1021
1022 msg = buf_msg(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001023
Erik Hugne512137e2013-12-06 10:08:00 -05001024 /* Detect repeated retransmit failures */
1025 if (l_ptr->last_retransmitted == msg_seqno(msg)) {
1026 if (++l_ptr->stale_count > 100) {
1027 link_retransmit_failure(l_ptr, buf);
1028 return;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001029 }
1030 } else {
Erik Hugne512137e2013-12-06 10:08:00 -05001031 l_ptr->last_retransmitted = msg_seqno(msg);
1032 l_ptr->stale_count = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001033 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001034
Neil Hormanca509102010-03-15 07:58:45 +00001035 while (retransmits && (buf != l_ptr->next_out) && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001036 msg = buf_msg(buf);
1037 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001038 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Ying Xue7a2f7d12014-04-21 10:55:46 +08001039 tipc_bearer_send(l_ptr->bearer_id, buf, &l_ptr->media_addr);
Ying Xue3c294cb2012-11-15 11:34:45 +08001040 buf = buf->next;
1041 retransmits--;
1042 l_ptr->stats.retransmitted++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001043 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001044
Per Lidenb97bf3f2006-01-02 19:04:38 +01001045 l_ptr->retransm_queue_head = l_ptr->retransm_queue_size = 0;
1046}
1047
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001048/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001049 * link_insert_deferred_queue - insert deferred messages back into receive chain
1050 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001051static struct sk_buff *link_insert_deferred_queue(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001052 struct sk_buff *buf)
1053{
1054 u32 seq_no;
1055
1056 if (l_ptr->oldest_deferred_in == NULL)
1057 return buf;
1058
Allan Stephensf9057302011-10-24 16:03:12 -04001059 seq_no = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001060 if (seq_no == mod(l_ptr->next_in_no)) {
1061 l_ptr->newest_deferred_in->next = buf;
1062 buf = l_ptr->oldest_deferred_in;
1063 l_ptr->oldest_deferred_in = NULL;
1064 l_ptr->deferred_inqueue_sz = 0;
1065 }
1066 return buf;
1067}
1068
Allan Stephens85035562008-04-15 19:04:54 -07001069/**
1070 * link_recv_buf_validate - validate basic format of received message
1071 *
1072 * This routine ensures a TIPC message has an acceptable header, and at least
1073 * as much data as the header indicates it should. The routine also ensures
1074 * that the entire message header is stored in the main fragment of the message
1075 * buffer, to simplify future access to message header fields.
1076 *
1077 * Note: Having extra info present in the message header or data areas is OK.
1078 * TIPC will ignore the excess, under the assumption that it is optional info
1079 * introduced by a later release of the protocol.
1080 */
Allan Stephens85035562008-04-15 19:04:54 -07001081static int link_recv_buf_validate(struct sk_buff *buf)
1082{
1083 static u32 min_data_hdr_size[8] = {
Allan Stephens741d9eb2011-05-31 15:03:18 -04001084 SHORT_H_SIZE, MCAST_H_SIZE, NAMED_H_SIZE, BASIC_H_SIZE,
Allan Stephens85035562008-04-15 19:04:54 -07001085 MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE
1086 };
1087
1088 struct tipc_msg *msg;
1089 u32 tipc_hdr[2];
1090 u32 size;
1091 u32 hdr_size;
1092 u32 min_hdr_size;
1093
Erik Hugne64380a02014-02-11 11:38:26 +01001094 /* If this packet comes from the defer queue, the skb has already
1095 * been validated
1096 */
1097 if (unlikely(TIPC_SKB_CB(buf)->deferred))
1098 return 1;
1099
Allan Stephens85035562008-04-15 19:04:54 -07001100 if (unlikely(buf->len < MIN_H_SIZE))
1101 return 0;
1102
1103 msg = skb_header_pointer(buf, 0, sizeof(tipc_hdr), tipc_hdr);
1104 if (msg == NULL)
1105 return 0;
1106
1107 if (unlikely(msg_version(msg) != TIPC_VERSION))
1108 return 0;
1109
1110 size = msg_size(msg);
1111 hdr_size = msg_hdr_sz(msg);
1112 min_hdr_size = msg_isdata(msg) ?
1113 min_data_hdr_size[msg_type(msg)] : INT_H_SIZE;
1114
1115 if (unlikely((hdr_size < min_hdr_size) ||
1116 (size < hdr_size) ||
1117 (buf->len < size) ||
1118 (size - hdr_size > TIPC_MAX_USER_MSG_SIZE)))
1119 return 0;
1120
1121 return pskb_may_pull(buf, hdr_size);
1122}
1123
Allan Stephensb02b69c2010-08-17 11:00:07 +00001124/**
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001125 * tipc_rcv - process TIPC packets/messages arriving from off-node
Allan Stephensb02b69c2010-08-17 11:00:07 +00001126 * @head: pointer to message buffer chain
Ying Xue7a2f7d12014-04-21 10:55:46 +08001127 * @b_ptr: pointer to bearer message arrived on
Allan Stephensb02b69c2010-08-17 11:00:07 +00001128 *
1129 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1130 * structure (i.e. cannot be NULL), but bearer can be inactive.
1131 */
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001132void tipc_rcv(struct sk_buff *head, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001133{
Per Lidenb97bf3f2006-01-02 19:04:38 +01001134 while (head) {
David S. Miller6c000552008-09-02 23:38:32 -07001135 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001136 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001137 struct sk_buff *crs;
1138 struct sk_buff *buf = head;
Allan Stephens85035562008-04-15 19:04:54 -07001139 struct tipc_msg *msg;
1140 u32 seq_no;
1141 u32 ackd;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001142 u32 released = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001143
Per Lidenb97bf3f2006-01-02 19:04:38 +01001144 head = head->next;
Erik Hugne732256b2014-01-07 15:51:36 -05001145 buf->next = NULL;
Allan Stephens85035562008-04-15 19:04:54 -07001146
1147 /* Ensure message is well-formed */
Allan Stephens85035562008-04-15 19:04:54 -07001148 if (unlikely(!link_recv_buf_validate(buf)))
Ying Xue3af390e2013-10-30 11:26:57 +08001149 goto discard;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001150
Allan Stephensfe13dda2008-04-15 19:03:23 -07001151 /* Ensure message data is a single contiguous unit */
Allan Stephens5f6d9122011-11-04 13:24:29 -04001152 if (unlikely(skb_linearize(buf)))
Ying Xue3af390e2013-10-30 11:26:57 +08001153 goto discard;
Allan Stephensfe13dda2008-04-15 19:03:23 -07001154
Allan Stephens85035562008-04-15 19:04:54 -07001155 /* Handle arrival of a non-unicast link message */
Allan Stephens85035562008-04-15 19:04:54 -07001156 msg = buf_msg(buf);
1157
Per Lidenb97bf3f2006-01-02 19:04:38 +01001158 if (unlikely(msg_non_seq(msg))) {
Allan Stephens1265a022008-06-04 17:32:35 -07001159 if (msg_user(msg) == LINK_CONFIG)
Ying Xue247f0f32014-02-18 16:06:46 +08001160 tipc_disc_rcv(buf, b_ptr);
Allan Stephens1265a022008-06-04 17:32:35 -07001161 else
Ying Xue247f0f32014-02-18 16:06:46 +08001162 tipc_bclink_rcv(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001163 continue;
1164 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001165
Allan Stephensed33a9c2011-04-05 15:15:04 -04001166 /* Discard unicast link messages destined for another node */
Allan Stephens26008242006-06-25 23:39:31 -07001167 if (unlikely(!msg_short(msg) &&
1168 (msg_destnode(msg) != tipc_own_addr)))
Ying Xue3af390e2013-10-30 11:26:57 +08001169 goto discard;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001170
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001171 /* Locate neighboring node that sent message */
Per Liden4323add2006-01-18 00:38:21 +01001172 n_ptr = tipc_node_find(msg_prevnode(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001173 if (unlikely(!n_ptr))
Ying Xue3af390e2013-10-30 11:26:57 +08001174 goto discard;
Per Liden4323add2006-01-18 00:38:21 +01001175 tipc_node_lock(n_ptr);
Allan Stephens85035562008-04-15 19:04:54 -07001176
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001177 /* Locate unicast link endpoint that should handle message */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001178 l_ptr = n_ptr->links[b_ptr->identity];
Ying Xue3af390e2013-10-30 11:26:57 +08001179 if (unlikely(!l_ptr))
1180 goto unlock_discard;
Allan Stephens85035562008-04-15 19:04:54 -07001181
Allan Stephensb4b56102011-05-27 11:00:51 -04001182 /* Verify that communication with node is currently allowed */
Ying Xueaecb9bb2014-05-08 08:54:39 +08001183 if ((n_ptr->action_flags & TIPC_WAIT_PEER_LINKS_DOWN) &&
Ying Xue10f465c2014-05-05 08:56:11 +08001184 msg_user(msg) == LINK_PROTOCOL &&
1185 (msg_type(msg) == RESET_MSG ||
1186 msg_type(msg) == ACTIVATE_MSG) &&
1187 !msg_redundant_link(msg))
Ying Xueaecb9bb2014-05-08 08:54:39 +08001188 n_ptr->action_flags &= ~TIPC_WAIT_PEER_LINKS_DOWN;
Allan Stephensb4b56102011-05-27 11:00:51 -04001189
Ying Xue10f465c2014-05-05 08:56:11 +08001190 if (tipc_node_blocked(n_ptr))
Ying Xue3af390e2013-10-30 11:26:57 +08001191 goto unlock_discard;
Allan Stephensb4b56102011-05-27 11:00:51 -04001192
Allan Stephens85035562008-04-15 19:04:54 -07001193 /* Validate message sequence number info */
Allan Stephens85035562008-04-15 19:04:54 -07001194 seq_no = msg_seqno(msg);
1195 ackd = msg_ack(msg);
1196
1197 /* Release acked messages */
Ying Xue389dd9b2012-11-16 13:51:30 +08001198 if (n_ptr->bclink.recv_permitted)
Allan Stephens365595912011-10-24 15:26:24 -04001199 tipc_bclink_acknowledge(n_ptr, msg_bcast_ack(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001200
1201 crs = l_ptr->first_out;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001202 while ((crs != l_ptr->next_out) &&
Allan Stephensf9057302011-10-24 16:03:12 -04001203 less_eq(buf_seqno(crs), ackd)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001204 struct sk_buff *next = crs->next;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001205 kfree_skb(crs);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001206 crs = next;
1207 released++;
1208 }
1209 if (released) {
1210 l_ptr->first_out = crs;
1211 l_ptr->out_queue_size -= released;
1212 }
Allan Stephens85035562008-04-15 19:04:54 -07001213
1214 /* Try sending any messages link endpoint has pending */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001215 if (unlikely(l_ptr->next_out))
Per Liden4323add2006-01-18 00:38:21 +01001216 tipc_link_push_queue(l_ptr);
Jon Paul Maloya5377832014-02-13 17:29:15 -05001217
Jon Paul Maloy50100a52014-08-22 18:09:07 -04001218 if (released && !skb_queue_empty(&l_ptr->waiting_sks)) {
1219 link_prepare_wakeup(l_ptr);
1220 l_ptr->owner->action_flags |= TIPC_WAKEUP_USERS;
1221 }
Jon Paul Maloya5377832014-02-13 17:29:15 -05001222
Jon Paul Maloya5377832014-02-13 17:29:15 -05001223 /* Process the incoming packet */
Ying Xue3af390e2013-10-30 11:26:57 +08001224 if (unlikely(!link_working_working(l_ptr))) {
1225 if (msg_user(msg) == LINK_PROTOCOL) {
Ying Xue247f0f32014-02-18 16:06:46 +08001226 tipc_link_proto_rcv(l_ptr, buf);
Ying Xue3af390e2013-10-30 11:26:57 +08001227 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001228 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001229 continue;
1230 }
Ying Xue3af390e2013-10-30 11:26:57 +08001231
1232 /* Traffic message. Conditionally activate link */
1233 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1234
1235 if (link_working_working(l_ptr)) {
1236 /* Re-insert buffer in front of queue */
1237 buf->next = head;
1238 head = buf;
1239 tipc_node_unlock(n_ptr);
1240 continue;
1241 }
1242 goto unlock_discard;
1243 }
1244
1245 /* Link is now in state WORKING_WORKING */
1246 if (unlikely(seq_no != mod(l_ptr->next_in_no))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001247 link_handle_out_of_seq_msg(l_ptr, buf);
1248 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001249 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001250 continue;
1251 }
Ying Xue3af390e2013-10-30 11:26:57 +08001252 l_ptr->next_in_no++;
1253 if (unlikely(l_ptr->oldest_deferred_in))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001254 head = link_insert_deferred_queue(l_ptr, head);
Jon Paul Maloya5377832014-02-13 17:29:15 -05001255
Erik Hugne3f53bd82014-07-01 10:22:41 +02001256 if (unlikely(++l_ptr->unacked_window >= TIPC_MIN_LINK_WIN)) {
1257 l_ptr->stats.sent_acks++;
1258 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
1259 }
1260
Erik Hugne7ae934b2014-07-01 10:22:40 +02001261 if (tipc_link_prepare_input(l_ptr, &buf)) {
Per Liden4323add2006-01-18 00:38:21 +01001262 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001263 continue;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001264 }
Per Liden4323add2006-01-18 00:38:21 +01001265 tipc_node_unlock(n_ptr);
Erik Hugne7ae934b2014-07-01 10:22:40 +02001266 msg = buf_msg(buf);
1267 if (tipc_link_input(l_ptr, buf) != 0)
1268 goto discard;
Ying Xue3af390e2013-10-30 11:26:57 +08001269 continue;
1270unlock_discard:
Ying Xue3af390e2013-10-30 11:26:57 +08001271 tipc_node_unlock(n_ptr);
1272discard:
Allan Stephens5f6d9122011-11-04 13:24:29 -04001273 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001274 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001275}
1276
Ben Hutchings2c530402012-07-10 10:55:09 +00001277/**
Erik Hugne7ae934b2014-07-01 10:22:40 +02001278 * tipc_link_prepare_input - process TIPC link messages
1279 *
1280 * returns nonzero if the message was consumed
1281 *
1282 * Node lock must be held
1283 */
1284static int tipc_link_prepare_input(struct tipc_link *l, struct sk_buff **buf)
1285{
1286 struct tipc_node *n;
1287 struct tipc_msg *msg;
1288 int res = -EINVAL;
1289
1290 n = l->owner;
1291 msg = buf_msg(*buf);
1292 switch (msg_user(msg)) {
1293 case CHANGEOVER_PROTOCOL:
1294 if (tipc_link_tunnel_rcv(n, buf))
1295 res = 0;
1296 break;
1297 case MSG_FRAGMENTER:
1298 l->stats.recv_fragments++;
1299 if (tipc_buf_append(&l->reasm_buf, buf)) {
1300 l->stats.recv_fragmented++;
1301 res = 0;
1302 } else if (!l->reasm_buf) {
1303 tipc_link_reset(l);
1304 }
1305 break;
1306 case MSG_BUNDLER:
1307 l->stats.recv_bundles++;
1308 l->stats.recv_bundled += msg_msgcnt(msg);
1309 res = 0;
1310 break;
1311 case NAME_DISTRIBUTOR:
1312 n->bclink.recv_permitted = true;
1313 res = 0;
1314 break;
1315 case BCAST_PROTOCOL:
1316 tipc_link_sync_rcv(n, *buf);
1317 break;
1318 default:
1319 res = 0;
1320 }
1321 return res;
1322}
1323/**
1324 * tipc_link_input - Deliver message too higher layers
1325 */
1326static int tipc_link_input(struct tipc_link *l, struct sk_buff *buf)
1327{
1328 struct tipc_msg *msg = buf_msg(buf);
1329 int res = 0;
1330
1331 switch (msg_user(msg)) {
1332 case TIPC_LOW_IMPORTANCE:
1333 case TIPC_MEDIUM_IMPORTANCE:
1334 case TIPC_HIGH_IMPORTANCE:
1335 case TIPC_CRITICAL_IMPORTANCE:
1336 case CONN_MANAGER:
1337 tipc_sk_rcv(buf);
1338 break;
1339 case NAME_DISTRIBUTOR:
1340 tipc_named_rcv(buf);
1341 break;
1342 case MSG_BUNDLER:
1343 tipc_link_bundle_rcv(buf);
1344 break;
1345 default:
1346 res = -EINVAL;
1347 }
1348 return res;
1349}
1350
1351/**
Allan Stephens8809b252011-10-25 10:44:35 -04001352 * tipc_link_defer_pkt - Add out-of-sequence message to deferred reception queue
1353 *
1354 * Returns increase in queue length (i.e. 0 or 1)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001355 */
Allan Stephens8809b252011-10-25 10:44:35 -04001356u32 tipc_link_defer_pkt(struct sk_buff **head, struct sk_buff **tail,
Per Liden4323add2006-01-18 00:38:21 +01001357 struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001358{
Allan Stephens8809b252011-10-25 10:44:35 -04001359 struct sk_buff *queue_buf;
1360 struct sk_buff **prev;
Allan Stephensf9057302011-10-24 16:03:12 -04001361 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001362
1363 buf->next = NULL;
1364
1365 /* Empty queue ? */
1366 if (*head == NULL) {
1367 *head = *tail = buf;
1368 return 1;
1369 }
1370
1371 /* Last ? */
Allan Stephensf9057302011-10-24 16:03:12 -04001372 if (less(buf_seqno(*tail), seq_no)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001373 (*tail)->next = buf;
1374 *tail = buf;
1375 return 1;
1376 }
1377
Allan Stephens8809b252011-10-25 10:44:35 -04001378 /* Locate insertion point in queue, then insert; discard if duplicate */
1379 prev = head;
1380 queue_buf = *head;
1381 for (;;) {
1382 u32 curr_seqno = buf_seqno(queue_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001383
Allan Stephens8809b252011-10-25 10:44:35 -04001384 if (seq_no == curr_seqno) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001385 kfree_skb(buf);
Allan Stephens8809b252011-10-25 10:44:35 -04001386 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001387 }
Allan Stephens8809b252011-10-25 10:44:35 -04001388
1389 if (less(seq_no, curr_seqno))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001390 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001391
Allan Stephens8809b252011-10-25 10:44:35 -04001392 prev = &queue_buf->next;
1393 queue_buf = queue_buf->next;
1394 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001395
Allan Stephens8809b252011-10-25 10:44:35 -04001396 buf->next = queue_buf;
1397 *prev = buf;
1398 return 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001399}
1400
Allan Stephens8809b252011-10-25 10:44:35 -04001401/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001402 * link_handle_out_of_seq_msg - handle arrival of out-of-sequence packet
1403 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001404static void link_handle_out_of_seq_msg(struct tipc_link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001405 struct sk_buff *buf)
1406{
Allan Stephensf9057302011-10-24 16:03:12 -04001407 u32 seq_no = buf_seqno(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001408
1409 if (likely(msg_user(buf_msg(buf)) == LINK_PROTOCOL)) {
Ying Xue247f0f32014-02-18 16:06:46 +08001410 tipc_link_proto_rcv(l_ptr, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001411 return;
1412 }
1413
Per Lidenb97bf3f2006-01-02 19:04:38 +01001414 /* Record OOS packet arrival (force mismatch on next timeout) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001415 l_ptr->checkpoint--;
1416
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001417 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001418 * Discard packet if a duplicate; otherwise add it to deferred queue
1419 * and notify peer of gap as per protocol specification
1420 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001421 if (less(seq_no, mod(l_ptr->next_in_no))) {
1422 l_ptr->stats.duplicates++;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001423 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001424 return;
1425 }
1426
Per Liden4323add2006-01-18 00:38:21 +01001427 if (tipc_link_defer_pkt(&l_ptr->oldest_deferred_in,
1428 &l_ptr->newest_deferred_in, buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001429 l_ptr->deferred_inqueue_sz++;
1430 l_ptr->stats.deferred_recv++;
Erik Hugne64380a02014-02-11 11:38:26 +01001431 TIPC_SKB_CB(buf)->deferred = true;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001432 if ((l_ptr->deferred_inqueue_sz % 16) == 1)
Ying Xue247f0f32014-02-18 16:06:46 +08001433 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001434 } else
1435 l_ptr->stats.duplicates++;
1436}
1437
1438/*
1439 * Send protocol message to the other endpoint.
1440 */
Ying Xue247f0f32014-02-18 16:06:46 +08001441void tipc_link_proto_xmit(struct tipc_link *l_ptr, u32 msg_typ, int probe_msg,
1442 u32 gap, u32 tolerance, u32 priority, u32 ack_mtu)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001443{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001444 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001445 struct tipc_msg *msg = l_ptr->pmsg;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001446 u32 msg_size = sizeof(l_ptr->proto_msg);
Allan Stephens75f0aa42011-02-28 15:30:20 -05001447 int r_flag;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001448
Allan Stephens92d2c902011-10-25 11:20:26 -04001449 /* Discard any previous message that was deferred due to congestion */
Allan Stephens92d2c902011-10-25 11:20:26 -04001450 if (l_ptr->proto_msg_queue) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04001451 kfree_skb(l_ptr->proto_msg_queue);
Allan Stephens92d2c902011-10-25 11:20:26 -04001452 l_ptr->proto_msg_queue = NULL;
1453 }
1454
Ying Xue77a7e072013-12-10 20:45:44 -08001455 /* Don't send protocol message during link changeover */
1456 if (l_ptr->exp_msg_count)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001457 return;
Allan Stephensb4b56102011-05-27 11:00:51 -04001458
1459 /* Abort non-RESET send if communication with node is prohibited */
Ying Xue10f465c2014-05-05 08:56:11 +08001460 if ((tipc_node_blocked(l_ptr->owner)) && (msg_typ != RESET_MSG))
Allan Stephensb4b56102011-05-27 11:00:51 -04001461 return;
1462
Allan Stephens92d2c902011-10-25 11:20:26 -04001463 /* Create protocol message with "out-of-sequence" sequence number */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001464 msg_set_type(msg, msg_typ);
Ying Xue7a2f7d12014-04-21 10:55:46 +08001465 msg_set_net_plane(msg, l_ptr->net_plane);
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001466 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001467 msg_set_last_bcast(msg, tipc_bclink_get_last_sent());
Per Lidenb97bf3f2006-01-02 19:04:38 +01001468
1469 if (msg_typ == STATE_MSG) {
1470 u32 next_sent = mod(l_ptr->next_out_no);
1471
Per Liden4323add2006-01-18 00:38:21 +01001472 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001473 return;
1474 if (l_ptr->next_out)
Allan Stephensf9057302011-10-24 16:03:12 -04001475 next_sent = buf_seqno(l_ptr->next_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001476 msg_set_next_sent(msg, next_sent);
1477 if (l_ptr->oldest_deferred_in) {
Allan Stephensf9057302011-10-24 16:03:12 -04001478 u32 rec = buf_seqno(l_ptr->oldest_deferred_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001479 gap = mod(rec - mod(l_ptr->next_in_no));
1480 }
1481 msg_set_seq_gap(msg, gap);
1482 if (gap)
1483 l_ptr->stats.sent_nacks++;
1484 msg_set_link_tolerance(msg, tolerance);
1485 msg_set_linkprio(msg, priority);
1486 msg_set_max_pkt(msg, ack_mtu);
1487 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
1488 msg_set_probe(msg, probe_msg != 0);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001489 if (probe_msg) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001490 u32 mtu = l_ptr->max_pkt;
1491
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001492 if ((mtu < l_ptr->max_pkt_target) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001493 link_working_working(l_ptr) &&
1494 l_ptr->fsm_msg_cnt) {
1495 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001496 if (l_ptr->max_pkt_probes == 10) {
1497 l_ptr->max_pkt_target = (msg_size - 4);
1498 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001499 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001500 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001501 l_ptr->max_pkt_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001502 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001503
1504 l_ptr->stats.sent_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001505 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001506 l_ptr->stats.sent_states++;
1507 } else { /* RESET_MSG or ACTIVATE_MSG */
1508 msg_set_ack(msg, mod(l_ptr->reset_checkpoint - 1));
1509 msg_set_seq_gap(msg, 0);
1510 msg_set_next_sent(msg, 1);
Allan Stephensf23d9bf2011-01-18 15:15:34 -05001511 msg_set_probe(msg, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001512 msg_set_link_tolerance(msg, l_ptr->tolerance);
1513 msg_set_linkprio(msg, l_ptr->priority);
1514 msg_set_max_pkt(msg, l_ptr->max_pkt_target);
1515 }
1516
Allan Stephens75f0aa42011-02-28 15:30:20 -05001517 r_flag = (l_ptr->owner->working_links > tipc_link_is_up(l_ptr));
1518 msg_set_redundant_link(msg, r_flag);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001519 msg_set_linkprio(msg, l_ptr->priority);
Allan Stephens92d2c902011-10-25 11:20:26 -04001520 msg_set_size(msg, msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001521
1522 msg_set_seqno(msg, mod(l_ptr->next_out_no + (0xffff/2)));
1523
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001524 buf = tipc_buf_acquire(msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001525 if (!buf)
1526 return;
1527
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001528 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
Ying Xue796c75d2013-06-17 10:54:48 -04001529 buf->priority = TC_PRIO_CONTROL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001530
Ying Xue7a2f7d12014-04-21 10:55:46 +08001531 tipc_bearer_send(l_ptr->bearer_id, buf, &l_ptr->media_addr);
Allan Stephens92d2c902011-10-25 11:20:26 -04001532 l_ptr->unacked_window = 0;
Allan Stephens5f6d9122011-11-04 13:24:29 -04001533 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001534}
1535
1536/*
1537 * Receive protocol message :
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001538 * Note that network plane id propagates through the network, and may
1539 * change at any time. The node with lowest address rules
Per Lidenb97bf3f2006-01-02 19:04:38 +01001540 */
Ying Xue247f0f32014-02-18 16:06:46 +08001541static void tipc_link_proto_rcv(struct tipc_link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001542{
1543 u32 rec_gap = 0;
1544 u32 max_pkt_info;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001545 u32 max_pkt_ack;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001546 u32 msg_tol;
1547 struct tipc_msg *msg = buf_msg(buf);
1548
Ying Xue77a7e072013-12-10 20:45:44 -08001549 /* Discard protocol message during link changeover */
1550 if (l_ptr->exp_msg_count)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001551 goto exit;
1552
Ying Xue7a2f7d12014-04-21 10:55:46 +08001553 if (l_ptr->net_plane != msg_net_plane(msg))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001554 if (tipc_own_addr > msg_prevnode(msg))
Ying Xue7a2f7d12014-04-21 10:55:46 +08001555 l_ptr->net_plane = msg_net_plane(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001556
Per Lidenb97bf3f2006-01-02 19:04:38 +01001557 switch (msg_type(msg)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001558
Per Lidenb97bf3f2006-01-02 19:04:38 +01001559 case RESET_MSG:
Allan Stephensa686e682008-06-04 17:29:39 -07001560 if (!link_working_unknown(l_ptr) &&
1561 (l_ptr->peer_session != INVALID_SESSION)) {
Allan Stephens641c2182011-04-07 09:54:43 -04001562 if (less_eq(msg_session(msg), l_ptr->peer_session))
1563 break; /* duplicate or old reset: ignore */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001564 }
Allan Stephensb4b56102011-05-27 11:00:51 -04001565
1566 if (!msg_redundant_link(msg) && (link_working_working(l_ptr) ||
1567 link_working_unknown(l_ptr))) {
1568 /*
1569 * peer has lost contact -- don't allow peer's links
1570 * to reactivate before we recognize loss & clean up
1571 */
Ying Xueca9cf062014-05-08 08:54:40 +08001572 l_ptr->owner->action_flags |= TIPC_WAIT_OWN_LINKS_DOWN;
Allan Stephensb4b56102011-05-27 11:00:51 -04001573 }
1574
Allan Stephens47361c82011-10-26 10:55:16 -04001575 link_state_event(l_ptr, RESET_MSG);
1576
Per Lidenb97bf3f2006-01-02 19:04:38 +01001577 /* fall thru' */
1578 case ACTIVATE_MSG:
1579 /* Update link settings according other endpoint's values */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001580 strcpy((strrchr(l_ptr->name, ':') + 1), (char *)msg_data(msg));
1581
Allan Stephens2db99832010-12-31 18:59:33 +00001582 msg_tol = msg_link_tolerance(msg);
1583 if (msg_tol > l_ptr->tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001584 link_set_supervision_props(l_ptr, msg_tol);
1585
1586 if (msg_linkprio(msg) > l_ptr->priority)
1587 l_ptr->priority = msg_linkprio(msg);
1588
1589 max_pkt_info = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001590 if (max_pkt_info) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001591 if (max_pkt_info < l_ptr->max_pkt_target)
1592 l_ptr->max_pkt_target = max_pkt_info;
1593 if (l_ptr->max_pkt > l_ptr->max_pkt_target)
1594 l_ptr->max_pkt = l_ptr->max_pkt_target;
1595 } else {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001596 l_ptr->max_pkt = l_ptr->max_pkt_target;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001597 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001598
Allan Stephens4d753132011-10-25 12:19:05 -04001599 /* Synchronize broadcast link info, if not done previously */
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001600 if (!tipc_node_is_up(l_ptr->owner)) {
1601 l_ptr->owner->bclink.last_sent =
1602 l_ptr->owner->bclink.last_in =
1603 msg_last_bcast(msg);
1604 l_ptr->owner->bclink.oos_state = 0;
1605 }
Allan Stephens4d753132011-10-25 12:19:05 -04001606
Per Lidenb97bf3f2006-01-02 19:04:38 +01001607 l_ptr->peer_session = msg_session(msg);
1608 l_ptr->peer_bearer_id = msg_bearer_id(msg);
Allan Stephens47361c82011-10-26 10:55:16 -04001609
1610 if (msg_type(msg) == ACTIVATE_MSG)
1611 link_state_event(l_ptr, ACTIVATE_MSG);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001612 break;
1613 case STATE_MSG:
1614
Allan Stephens2db99832010-12-31 18:59:33 +00001615 msg_tol = msg_link_tolerance(msg);
1616 if (msg_tol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001617 link_set_supervision_props(l_ptr, msg_tol);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001618
1619 if (msg_linkprio(msg) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001620 (msg_linkprio(msg) != l_ptr->priority)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001621 pr_warn("%s<%s>, priority change %u->%u\n",
1622 link_rst_msg, l_ptr->name, l_ptr->priority,
1623 msg_linkprio(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001624 l_ptr->priority = msg_linkprio(msg);
Per Liden4323add2006-01-18 00:38:21 +01001625 tipc_link_reset(l_ptr); /* Enforce change to take effect */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001626 break;
1627 }
Jon Paul Maloyec37dcd2014-05-14 05:39:10 -04001628
1629 /* Record reception; force mismatch at next timeout: */
1630 l_ptr->checkpoint--;
1631
Per Lidenb97bf3f2006-01-02 19:04:38 +01001632 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1633 l_ptr->stats.recv_states++;
1634 if (link_reset_unknown(l_ptr))
1635 break;
1636
1637 if (less_eq(mod(l_ptr->next_in_no), msg_next_sent(msg))) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001638 rec_gap = mod(msg_next_sent(msg) -
Per Lidenb97bf3f2006-01-02 19:04:38 +01001639 mod(l_ptr->next_in_no));
1640 }
1641
1642 max_pkt_ack = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001643 if (max_pkt_ack > l_ptr->max_pkt) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001644 l_ptr->max_pkt = max_pkt_ack;
1645 l_ptr->max_pkt_probes = 0;
1646 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001647
1648 max_pkt_ack = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001649 if (msg_probe(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001650 l_ptr->stats.recv_probes++;
Allan Stephensa0168922010-12-31 18:59:35 +00001651 if (msg_size(msg) > sizeof(l_ptr->proto_msg))
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001652 max_pkt_ack = msg_size(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001653 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001654
1655 /* Protocol message before retransmits, reduce loss risk */
Ying Xue389dd9b2012-11-16 13:51:30 +08001656 if (l_ptr->owner->bclink.recv_permitted)
Allan Stephens7a54d4a2011-10-27 14:17:53 -04001657 tipc_bclink_update_link_state(l_ptr->owner,
1658 msg_last_bcast(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001659
1660 if (rec_gap || (msg_probe(msg))) {
Ying Xue247f0f32014-02-18 16:06:46 +08001661 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, rec_gap, 0,
1662 0, max_pkt_ack);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001663 }
1664 if (msg_seq_gap(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001665 l_ptr->stats.recv_nacks++;
Per Liden4323add2006-01-18 00:38:21 +01001666 tipc_link_retransmit(l_ptr, l_ptr->first_out,
1667 msg_seq_gap(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001668 }
1669 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001670 }
1671exit:
Allan Stephens5f6d9122011-11-04 13:24:29 -04001672 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001673}
1674
1675
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001676/* tipc_link_tunnel_xmit(): Tunnel one packet via a link belonging to
1677 * a different bearer. Owner node is locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001678 */
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001679static void tipc_link_tunnel_xmit(struct tipc_link *l_ptr,
1680 struct tipc_msg *tunnel_hdr,
1681 struct tipc_msg *msg,
1682 u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001683{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001684 struct tipc_link *tunnel;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001685 struct sk_buff *buf;
1686 u32 length = msg_size(msg);
1687
1688 tunnel = l_ptr->owner->active_links[selector & 1];
Allan Stephens5392d642006-06-25 23:52:50 -07001689 if (!tipc_link_is_up(tunnel)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001690 pr_warn("%stunnel link no longer available\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001691 return;
Allan Stephens5392d642006-06-25 23:52:50 -07001692 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001693 msg_set_size(tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001694 buf = tipc_buf_acquire(length + INT_H_SIZE);
Allan Stephens5392d642006-06-25 23:52:50 -07001695 if (!buf) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001696 pr_warn("%sunable to send tunnel msg\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001697 return;
Allan Stephens5392d642006-06-25 23:52:50 -07001698 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001699 skb_copy_to_linear_data(buf, tunnel_hdr, INT_H_SIZE);
1700 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, msg, length);
Jon Paul Maloy9fbfb8b2014-07-16 20:41:03 -04001701 __tipc_link_xmit(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001702}
1703
1704
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001705/* tipc_link_failover_send_queue(): A link has gone down, but a second
1706 * link is still active. We can do failover. Tunnel the failing link's
1707 * whole send queue via the remaining link. This way, we don't lose
1708 * any packets, and sequence order is preserved for subsequent traffic
1709 * sent over the remaining link. Owner node is locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001710 */
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001711void tipc_link_failover_send_queue(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001712{
1713 u32 msgcount = l_ptr->out_queue_size;
1714 struct sk_buff *crs = l_ptr->first_out;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001715 struct tipc_link *tunnel = l_ptr->owner->active_links[0];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001716 struct tipc_msg tunnel_hdr;
Allan Stephens5392d642006-06-25 23:52:50 -07001717 int split_bundles;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001718
1719 if (!tunnel)
1720 return;
1721
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001722 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07001723 ORIGINAL_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001724 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
1725 msg_set_msgcnt(&tunnel_hdr, msgcount);
Allan Stephensf1310722006-06-25 23:51:37 -07001726
Per Lidenb97bf3f2006-01-02 19:04:38 +01001727 if (!l_ptr->first_out) {
1728 struct sk_buff *buf;
1729
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001730 buf = tipc_buf_acquire(INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001731 if (buf) {
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001732 skb_copy_to_linear_data(buf, &tunnel_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001733 msg_set_size(&tunnel_hdr, INT_H_SIZE);
Jon Paul Maloy9fbfb8b2014-07-16 20:41:03 -04001734 __tipc_link_xmit(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001735 } else {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001736 pr_warn("%sunable to send changeover msg\n",
1737 link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001738 }
1739 return;
1740 }
Allan Stephensf1310722006-06-25 23:51:37 -07001741
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001742 split_bundles = (l_ptr->owner->active_links[0] !=
Allan Stephens5392d642006-06-25 23:52:50 -07001743 l_ptr->owner->active_links[1]);
1744
Per Lidenb97bf3f2006-01-02 19:04:38 +01001745 while (crs) {
1746 struct tipc_msg *msg = buf_msg(crs);
1747
1748 if ((msg_user(msg) == MSG_BUNDLER) && split_bundles) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001749 struct tipc_msg *m = msg_get_wrapped(msg);
Allan Stephens0e659672010-12-31 18:59:32 +00001750 unchar *pos = (unchar *)m;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001751
Florian Westphald788d802007-08-02 19:28:06 -07001752 msgcount = msg_msgcnt(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001753 while (msgcount--) {
Allan Stephens0e659672010-12-31 18:59:32 +00001754 msg_set_seqno(m, msg_seqno(msg));
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001755 tipc_link_tunnel_xmit(l_ptr, &tunnel_hdr, m,
1756 msg_link_selector(m));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001757 pos += align(msg_size(m));
1758 m = (struct tipc_msg *)pos;
1759 }
1760 } else {
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001761 tipc_link_tunnel_xmit(l_ptr, &tunnel_hdr, msg,
1762 msg_link_selector(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001763 }
1764 crs = crs->next;
1765 }
1766}
1767
Ying Xue247f0f32014-02-18 16:06:46 +08001768/* tipc_link_dup_queue_xmit(): A second link has become active. Tunnel a
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001769 * duplicate of the first link's send queue via the new link. This way, we
1770 * are guaranteed that currently queued packets from a socket are delivered
1771 * before future traffic from the same socket, even if this is using the
1772 * new link. The last arriving copy of each duplicate packet is dropped at
1773 * the receiving end by the regular protocol check, so packet cardinality
1774 * and sequence order is preserved per sender/receiver socket pair.
1775 * Owner node is locked.
1776 */
Ying Xue247f0f32014-02-18 16:06:46 +08001777void tipc_link_dup_queue_xmit(struct tipc_link *l_ptr,
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001778 struct tipc_link *tunnel)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001779{
1780 struct sk_buff *iter;
1781 struct tipc_msg tunnel_hdr;
1782
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001783 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07001784 DUPLICATE_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001785 msg_set_msgcnt(&tunnel_hdr, l_ptr->out_queue_size);
1786 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
1787 iter = l_ptr->first_out;
1788 while (iter) {
1789 struct sk_buff *outbuf;
1790 struct tipc_msg *msg = buf_msg(iter);
1791 u32 length = msg_size(msg);
1792
1793 if (msg_user(msg) == MSG_BUNDLER)
1794 msg_set_type(msg, CLOSED_MSG);
1795 msg_set_ack(msg, mod(l_ptr->next_in_no - 1)); /* Update */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001796 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001797 msg_set_size(&tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001798 outbuf = tipc_buf_acquire(length + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001799 if (outbuf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001800 pr_warn("%sunable to send duplicate msg\n",
1801 link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001802 return;
1803 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001804 skb_copy_to_linear_data(outbuf, &tunnel_hdr, INT_H_SIZE);
1805 skb_copy_to_linear_data_offset(outbuf, INT_H_SIZE, iter->data,
1806 length);
Jon Paul Maloy9fbfb8b2014-07-16 20:41:03 -04001807 __tipc_link_xmit(tunnel, outbuf);
Per Liden4323add2006-01-18 00:38:21 +01001808 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001809 return;
1810 iter = iter->next;
1811 }
1812}
1813
Per Lidenb97bf3f2006-01-02 19:04:38 +01001814/**
1815 * buf_extract - extracts embedded TIPC message from another message
1816 * @skb: encapsulating message buffer
1817 * @from_pos: offset to extract from
1818 *
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001819 * Returns a new message buffer containing an embedded message. The
Per Lidenb97bf3f2006-01-02 19:04:38 +01001820 * encapsulating message itself is left unchanged.
1821 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001822static struct sk_buff *buf_extract(struct sk_buff *skb, u32 from_pos)
1823{
1824 struct tipc_msg *msg = (struct tipc_msg *)(skb->data + from_pos);
1825 u32 size = msg_size(msg);
1826 struct sk_buff *eb;
1827
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001828 eb = tipc_buf_acquire(size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001829 if (eb)
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001830 skb_copy_to_linear_data(eb, msg, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001831 return eb;
1832}
1833
Jon Paul Maloy1dab3d52014-02-13 17:29:10 -05001834
1835
1836/* tipc_link_dup_rcv(): Receive a tunnelled DUPLICATE_MSG packet.
1837 * Owner node is locked.
1838 */
1839static void tipc_link_dup_rcv(struct tipc_link *l_ptr,
1840 struct sk_buff *t_buf)
1841{
1842 struct sk_buff *buf;
1843
1844 if (!tipc_link_is_up(l_ptr))
1845 return;
1846
1847 buf = buf_extract(t_buf, INT_H_SIZE);
1848 if (buf == NULL) {
1849 pr_warn("%sfailed to extract inner dup pkt\n", link_co_err);
1850 return;
1851 }
1852
1853 /* Add buffer to deferred queue, if applicable: */
1854 link_handle_out_of_seq_msg(l_ptr, buf);
1855}
1856
Jon Paul Maloyf006c9c2014-02-13 17:29:11 -05001857/* tipc_link_failover_rcv(): Receive a tunnelled ORIGINAL_MSG packet
1858 * Owner node is locked.
1859 */
1860static struct sk_buff *tipc_link_failover_rcv(struct tipc_link *l_ptr,
1861 struct sk_buff *t_buf)
1862{
1863 struct tipc_msg *t_msg = buf_msg(t_buf);
1864 struct sk_buff *buf = NULL;
1865 struct tipc_msg *msg;
1866
1867 if (tipc_link_is_up(l_ptr))
1868 tipc_link_reset(l_ptr);
1869
1870 /* First failover packet? */
1871 if (l_ptr->exp_msg_count == START_CHANGEOVER)
1872 l_ptr->exp_msg_count = msg_msgcnt(t_msg);
1873
1874 /* Should there be an inner packet? */
1875 if (l_ptr->exp_msg_count) {
1876 l_ptr->exp_msg_count--;
1877 buf = buf_extract(t_buf, INT_H_SIZE);
1878 if (buf == NULL) {
1879 pr_warn("%sno inner failover pkt\n", link_co_err);
1880 goto exit;
1881 }
1882 msg = buf_msg(buf);
1883
1884 if (less(msg_seqno(msg), l_ptr->reset_checkpoint)) {
1885 kfree_skb(buf);
1886 buf = NULL;
1887 goto exit;
1888 }
1889 if (msg_user(msg) == MSG_FRAGMENTER) {
1890 l_ptr->stats.recv_fragments++;
Jon Paul Maloy37e22162014-05-14 05:39:12 -04001891 tipc_buf_append(&l_ptr->reasm_buf, &buf);
Jon Paul Maloyf006c9c2014-02-13 17:29:11 -05001892 }
1893 }
Jon Paul Maloyf006c9c2014-02-13 17:29:11 -05001894exit:
Jon Paul Maloy7d339392014-02-13 17:29:16 -05001895 if ((l_ptr->exp_msg_count == 0) && (l_ptr->flags & LINK_STOPPED)) {
1896 tipc_node_detach_link(l_ptr->owner, l_ptr);
1897 kfree(l_ptr);
1898 }
Jon Paul Maloyf006c9c2014-02-13 17:29:11 -05001899 return buf;
1900}
1901
Jon Paul Maloy1dab3d52014-02-13 17:29:10 -05001902/* tipc_link_tunnel_rcv(): Receive a tunnelled packet, sent
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001903 * via other link as result of a failover (ORIGINAL_MSG) or
1904 * a new active link (DUPLICATE_MSG). Failover packets are
1905 * returned to the active link for delivery upwards.
1906 * Owner node is locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001907 */
Jon Paul Maloy3bb53382014-02-13 17:29:12 -05001908static int tipc_link_tunnel_rcv(struct tipc_node *n_ptr,
Jon Paul Maloy170b3922014-01-07 17:02:41 -05001909 struct sk_buff **buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001910{
Jon Paul Maloy02842f72014-02-13 17:29:14 -05001911 struct sk_buff *t_buf = *buf;
1912 struct tipc_link *l_ptr;
1913 struct tipc_msg *t_msg = buf_msg(t_buf);
1914 u32 bearer_id = msg_bearer_id(t_msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001915
Jon Paul Maloy1e9d47a2014-02-13 17:29:13 -05001916 *buf = NULL;
1917
Dan Carpentercb4b102f2013-05-06 08:28:41 +00001918 if (bearer_id >= MAX_BEARERS)
1919 goto exit;
Jon Paul Maloy1dab3d52014-02-13 17:29:10 -05001920
Jon Paul Maloy02842f72014-02-13 17:29:14 -05001921 l_ptr = n_ptr->links[bearer_id];
1922 if (!l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001923 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001924
Jon Paul Maloy02842f72014-02-13 17:29:14 -05001925 if (msg_type(t_msg) == DUPLICATE_MSG)
1926 tipc_link_dup_rcv(l_ptr, t_buf);
1927 else if (msg_type(t_msg) == ORIGINAL_MSG)
1928 *buf = tipc_link_failover_rcv(l_ptr, t_buf);
Jon Paul Maloy1e9d47a2014-02-13 17:29:13 -05001929 else
1930 pr_warn("%sunknown tunnel pkt received\n", link_co_err);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001931exit:
Jon Paul Maloy02842f72014-02-13 17:29:14 -05001932 kfree_skb(t_buf);
Jon Paul Maloy1e9d47a2014-02-13 17:29:13 -05001933 return *buf != NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001934}
1935
1936/*
1937 * Bundler functionality:
1938 */
Ying Xue247f0f32014-02-18 16:06:46 +08001939void tipc_link_bundle_rcv(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001940{
1941 u32 msgcount = msg_msgcnt(buf_msg(buf));
1942 u32 pos = INT_H_SIZE;
1943 struct sk_buff *obuf;
Jon Paul Maloyec8a2e52014-06-25 20:41:40 -05001944 struct tipc_msg *omsg;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001945
Per Lidenb97bf3f2006-01-02 19:04:38 +01001946 while (msgcount--) {
1947 obuf = buf_extract(buf, pos);
1948 if (obuf == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -04001949 pr_warn("Link unable to unbundle message(s)\n");
Allan Stephensa10bd922006-06-25 23:52:17 -07001950 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001951 }
Jon Paul Maloyec8a2e52014-06-25 20:41:40 -05001952 omsg = buf_msg(obuf);
1953 pos += align(msg_size(omsg));
Jon Paul Maloy643566d2014-10-17 15:25:28 -04001954 if (msg_isdata(omsg)) {
1955 if (unlikely(msg_type(omsg) == TIPC_MCAST_MSG))
1956 tipc_sk_mcast_rcv(obuf);
1957 else
1958 tipc_sk_rcv(obuf);
1959 } else if (msg_user(omsg) == CONN_MANAGER) {
Jon Paul Maloyec8a2e52014-06-25 20:41:40 -05001960 tipc_sk_rcv(obuf);
1961 } else if (msg_user(omsg) == NAME_DISTRIBUTOR) {
1962 tipc_named_rcv(obuf);
1963 } else {
1964 pr_warn("Illegal bundled msg: %u\n", msg_user(omsg));
1965 kfree_skb(obuf);
1966 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001967 }
Allan Stephens5f6d9122011-11-04 13:24:29 -04001968 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001969}
1970
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001971static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001972{
Allan Stephens5413b4c2011-01-18 13:24:55 -05001973 if ((tolerance < TIPC_MIN_LINK_TOL) || (tolerance > TIPC_MAX_LINK_TOL))
1974 return;
1975
Per Lidenb97bf3f2006-01-02 19:04:38 +01001976 l_ptr->tolerance = tolerance;
1977 l_ptr->continuity_interval =
1978 ((tolerance / 4) > 500) ? 500 : tolerance / 4;
1979 l_ptr->abort_limit = tolerance / (l_ptr->continuity_interval / 4);
1980}
1981
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05001982void tipc_link_set_queue_limits(struct tipc_link *l_ptr, u32 window)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001983{
1984 /* Data messages from this node, inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08001985 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE] = window;
1986 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE] = (window / 3) * 4;
1987 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE] = (window / 3) * 5;
1988 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE] = (window / 3) * 6;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001989 /* Transiting data messages,inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08001990 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE + 4] = 300;
1991 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE + 4] = 600;
1992 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE + 4] = 900;
1993 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE + 4] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001994 l_ptr->queue_limit[CONN_MANAGER] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001995 l_ptr->queue_limit[CHANGEOVER_PROTOCOL] = 2500;
1996 l_ptr->queue_limit[NAME_DISTRIBUTOR] = 3000;
1997 /* FRAGMENT and LAST_FRAGMENT packets */
1998 l_ptr->queue_limit[MSG_FRAGMENTER] = 4000;
1999}
2000
Jon Paul Maloye099e862014-02-13 17:29:18 -05002001/* tipc_link_find_owner - locate owner node of link by link's name
2002 * @name: pointer to link name string
2003 * @bearer_id: pointer to index in 'node->links' array where the link was found.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002004 *
Jon Paul Maloye099e862014-02-13 17:29:18 -05002005 * Returns pointer to node owning the link, or 0 if no matching link is found.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002006 */
Jon Paul Maloye099e862014-02-13 17:29:18 -05002007static struct tipc_node *tipc_link_find_owner(const char *link_name,
2008 unsigned int *bearer_id)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002009{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002010 struct tipc_link *l_ptr;
Erik Hugnebbfbe472013-10-18 07:23:21 +02002011 struct tipc_node *n_ptr;
Jon Paul Maloye099e862014-02-13 17:29:18 -05002012 struct tipc_node *found_node = 0;
Erik Hugnebbfbe472013-10-18 07:23:21 +02002013 int i;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002014
Jon Paul Maloye099e862014-02-13 17:29:18 -05002015 *bearer_id = 0;
Ying Xue6c7a7622014-03-27 12:54:37 +08002016 rcu_read_lock();
2017 list_for_each_entry_rcu(n_ptr, &tipc_node_list, list) {
Jon Paul Maloya11607f2014-02-14 16:40:44 -05002018 tipc_node_lock(n_ptr);
Erik Hugnebbfbe472013-10-18 07:23:21 +02002019 for (i = 0; i < MAX_BEARERS; i++) {
2020 l_ptr = n_ptr->links[i];
Jon Paul Maloye099e862014-02-13 17:29:18 -05002021 if (l_ptr && !strcmp(l_ptr->name, link_name)) {
2022 *bearer_id = i;
2023 found_node = n_ptr;
2024 break;
2025 }
Erik Hugnebbfbe472013-10-18 07:23:21 +02002026 }
Jon Paul Maloya11607f2014-02-14 16:40:44 -05002027 tipc_node_unlock(n_ptr);
Jon Paul Maloye099e862014-02-13 17:29:18 -05002028 if (found_node)
2029 break;
Erik Hugnebbfbe472013-10-18 07:23:21 +02002030 }
Ying Xue6c7a7622014-03-27 12:54:37 +08002031 rcu_read_unlock();
2032
Jon Paul Maloye099e862014-02-13 17:29:18 -05002033 return found_node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002034}
2035
Allan Stephens5c216e12011-10-18 11:34:29 -04002036/**
2037 * link_value_is_valid -- validate proposed link tolerance/priority/window
2038 *
Ben Hutchings2c530402012-07-10 10:55:09 +00002039 * @cmd: value type (TIPC_CMD_SET_LINK_*)
2040 * @new_value: the new value
Allan Stephens5c216e12011-10-18 11:34:29 -04002041 *
2042 * Returns 1 if value is within range, 0 if not.
2043 */
Allan Stephens5c216e12011-10-18 11:34:29 -04002044static int link_value_is_valid(u16 cmd, u32 new_value)
2045{
2046 switch (cmd) {
2047 case TIPC_CMD_SET_LINK_TOL:
2048 return (new_value >= TIPC_MIN_LINK_TOL) &&
2049 (new_value <= TIPC_MAX_LINK_TOL);
2050 case TIPC_CMD_SET_LINK_PRI:
2051 return (new_value <= TIPC_MAX_LINK_PRI);
2052 case TIPC_CMD_SET_LINK_WINDOW:
2053 return (new_value >= TIPC_MIN_LINK_WIN) &&
2054 (new_value <= TIPC_MAX_LINK_WIN);
2055 }
2056 return 0;
2057}
2058
Allan Stephens5c216e12011-10-18 11:34:29 -04002059/**
2060 * link_cmd_set_value - change priority/tolerance/window for link/bearer/media
Ben Hutchings2c530402012-07-10 10:55:09 +00002061 * @name: ptr to link, bearer, or media name
2062 * @new_value: new value of link, bearer, or media setting
2063 * @cmd: which link, bearer, or media attribute to set (TIPC_CMD_SET_LINK_*)
Allan Stephens5c216e12011-10-18 11:34:29 -04002064 *
Ying Xue7216cd92014-04-21 10:55:48 +08002065 * Caller must hold RTNL lock to ensure link/bearer/media is not deleted.
Allan Stephens5c216e12011-10-18 11:34:29 -04002066 *
2067 * Returns 0 if value updated and negative value on error.
2068 */
Allan Stephens5c216e12011-10-18 11:34:29 -04002069static int link_cmd_set_value(const char *name, u32 new_value, u16 cmd)
2070{
2071 struct tipc_node *node;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002072 struct tipc_link *l_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -04002073 struct tipc_bearer *b_ptr;
Paul Gortmaker358a0d12011-12-29 20:19:42 -05002074 struct tipc_media *m_ptr;
Jon Paul Maloye099e862014-02-13 17:29:18 -05002075 int bearer_id;
Ying Xue636c0372013-10-18 07:23:20 +02002076 int res = 0;
Allan Stephens5c216e12011-10-18 11:34:29 -04002077
Jon Paul Maloye099e862014-02-13 17:29:18 -05002078 node = tipc_link_find_owner(name, &bearer_id);
2079 if (node) {
Allan Stephens5c216e12011-10-18 11:34:29 -04002080 tipc_node_lock(node);
Jon Paul Maloye099e862014-02-13 17:29:18 -05002081 l_ptr = node->links[bearer_id];
2082
2083 if (l_ptr) {
2084 switch (cmd) {
2085 case TIPC_CMD_SET_LINK_TOL:
2086 link_set_supervision_props(l_ptr, new_value);
Ying Xue247f0f32014-02-18 16:06:46 +08002087 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, 0,
2088 new_value, 0, 0);
Jon Paul Maloye099e862014-02-13 17:29:18 -05002089 break;
2090 case TIPC_CMD_SET_LINK_PRI:
2091 l_ptr->priority = new_value;
Ying Xue247f0f32014-02-18 16:06:46 +08002092 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, 0,
2093 0, new_value, 0);
Jon Paul Maloye099e862014-02-13 17:29:18 -05002094 break;
2095 case TIPC_CMD_SET_LINK_WINDOW:
2096 tipc_link_set_queue_limits(l_ptr, new_value);
2097 break;
2098 default:
2099 res = -EINVAL;
2100 break;
2101 }
Allan Stephens5c216e12011-10-18 11:34:29 -04002102 }
2103 tipc_node_unlock(node);
Ying Xue636c0372013-10-18 07:23:20 +02002104 return res;
Allan Stephens5c216e12011-10-18 11:34:29 -04002105 }
2106
2107 b_ptr = tipc_bearer_find(name);
2108 if (b_ptr) {
2109 switch (cmd) {
2110 case TIPC_CMD_SET_LINK_TOL:
2111 b_ptr->tolerance = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002112 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002113 case TIPC_CMD_SET_LINK_PRI:
2114 b_ptr->priority = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002115 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002116 case TIPC_CMD_SET_LINK_WINDOW:
2117 b_ptr->window = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002118 break;
2119 default:
2120 res = -EINVAL;
2121 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002122 }
Ying Xue636c0372013-10-18 07:23:20 +02002123 return res;
Allan Stephens5c216e12011-10-18 11:34:29 -04002124 }
2125
2126 m_ptr = tipc_media_find(name);
2127 if (!m_ptr)
2128 return -ENODEV;
2129 switch (cmd) {
2130 case TIPC_CMD_SET_LINK_TOL:
2131 m_ptr->tolerance = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002132 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002133 case TIPC_CMD_SET_LINK_PRI:
2134 m_ptr->priority = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002135 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002136 case TIPC_CMD_SET_LINK_WINDOW:
2137 m_ptr->window = new_value;
Ying Xue636c0372013-10-18 07:23:20 +02002138 break;
2139 default:
2140 res = -EINVAL;
2141 break;
Allan Stephens5c216e12011-10-18 11:34:29 -04002142 }
Ying Xue636c0372013-10-18 07:23:20 +02002143 return res;
Allan Stephens5c216e12011-10-18 11:34:29 -04002144}
2145
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002146struct sk_buff *tipc_link_cmd_config(const void *req_tlv_area, int req_tlv_space,
Per Liden4323add2006-01-18 00:38:21 +01002147 u16 cmd)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002148{
2149 struct tipc_link_config *args;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002150 u32 new_value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002151 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002152
2153 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_CONFIG))
Per Liden4323add2006-01-18 00:38:21 +01002154 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002155
2156 args = (struct tipc_link_config *)TLV_DATA(req_tlv_area);
2157 new_value = ntohl(args->value);
2158
Allan Stephens5c216e12011-10-18 11:34:29 -04002159 if (!link_value_is_valid(cmd, new_value))
2160 return tipc_cfg_reply_error_string(
2161 "cannot change, value invalid");
2162
Per Liden4323add2006-01-18 00:38:21 +01002163 if (!strcmp(args->name, tipc_bclink_name)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002164 if ((cmd == TIPC_CMD_SET_LINK_WINDOW) &&
Per Liden4323add2006-01-18 00:38:21 +01002165 (tipc_bclink_set_queue_limits(new_value) == 0))
2166 return tipc_cfg_reply_none();
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002167 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
Per Liden4323add2006-01-18 00:38:21 +01002168 " (cannot change setting on broadcast link)");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002169 }
2170
Allan Stephens5c216e12011-10-18 11:34:29 -04002171 res = link_cmd_set_value(args->name, new_value, cmd);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002172 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002173 return tipc_cfg_reply_error_string("cannot change link setting");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002174
Per Liden4323add2006-01-18 00:38:21 +01002175 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002176}
2177
2178/**
2179 * link_reset_statistics - reset link statistics
2180 * @l_ptr: pointer to link
2181 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002182static void link_reset_statistics(struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002183{
2184 memset(&l_ptr->stats, 0, sizeof(l_ptr->stats));
2185 l_ptr->stats.sent_info = l_ptr->next_out_no;
2186 l_ptr->stats.recv_info = l_ptr->next_in_no;
2187}
2188
Per Liden4323add2006-01-18 00:38:21 +01002189struct sk_buff *tipc_link_cmd_reset_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002190{
2191 char *link_name;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002192 struct tipc_link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002193 struct tipc_node *node;
Jon Paul Maloye099e862014-02-13 17:29:18 -05002194 unsigned int bearer_id;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002195
2196 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002197 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002198
2199 link_name = (char *)TLV_DATA(req_tlv_area);
Per Liden4323add2006-01-18 00:38:21 +01002200 if (!strcmp(link_name, tipc_bclink_name)) {
2201 if (tipc_bclink_reset_stats())
2202 return tipc_cfg_reply_error_string("link not found");
2203 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002204 }
Jon Paul Maloye099e862014-02-13 17:29:18 -05002205 node = tipc_link_find_owner(link_name, &bearer_id);
Ying Xue7216cd92014-04-21 10:55:48 +08002206 if (!node)
Per Liden4323add2006-01-18 00:38:21 +01002207 return tipc_cfg_reply_error_string("link not found");
Ying Xue7216cd92014-04-21 10:55:48 +08002208
Jon Paul Maloya11607f2014-02-14 16:40:44 -05002209 tipc_node_lock(node);
Jon Paul Maloye099e862014-02-13 17:29:18 -05002210 l_ptr = node->links[bearer_id];
2211 if (!l_ptr) {
2212 tipc_node_unlock(node);
Jon Paul Maloye099e862014-02-13 17:29:18 -05002213 return tipc_cfg_reply_error_string("link not found");
2214 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002215 link_reset_statistics(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +01002216 tipc_node_unlock(node);
Per Liden4323add2006-01-18 00:38:21 +01002217 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002218}
2219
2220/**
2221 * percent - convert count to a percentage of total (rounding up or down)
2222 */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002223static u32 percent(u32 count, u32 total)
2224{
2225 return (count * 100 + (total / 2)) / total;
2226}
2227
2228/**
Per Liden4323add2006-01-18 00:38:21 +01002229 * tipc_link_stats - print link statistics
Per Lidenb97bf3f2006-01-02 19:04:38 +01002230 * @name: link name
2231 * @buf: print buffer area
2232 * @buf_size: size of print buffer area
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002233 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002234 * Returns length of print buffer data string (or 0 if error)
2235 */
Per Liden4323add2006-01-18 00:38:21 +01002236static int tipc_link_stats(const char *name, char *buf, const u32 buf_size)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002237{
Erik Hugnedc1aed32012-06-29 00:50:23 -04002238 struct tipc_link *l;
2239 struct tipc_stats *s;
David S. Miller6c000552008-09-02 23:38:32 -07002240 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002241 char *status;
2242 u32 profile_total = 0;
Jon Paul Maloye099e862014-02-13 17:29:18 -05002243 unsigned int bearer_id;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002244 int ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002245
Per Liden4323add2006-01-18 00:38:21 +01002246 if (!strcmp(name, tipc_bclink_name))
2247 return tipc_bclink_stats(buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002248
Jon Paul Maloye099e862014-02-13 17:29:18 -05002249 node = tipc_link_find_owner(name, &bearer_id);
Ying Xue7216cd92014-04-21 10:55:48 +08002250 if (!node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002251 return 0;
Ying Xue7216cd92014-04-21 10:55:48 +08002252
Per Liden4323add2006-01-18 00:38:21 +01002253 tipc_node_lock(node);
Jon Paul Maloye099e862014-02-13 17:29:18 -05002254
2255 l = node->links[bearer_id];
2256 if (!l) {
2257 tipc_node_unlock(node);
Jon Paul Maloye099e862014-02-13 17:29:18 -05002258 return 0;
2259 }
2260
Erik Hugnedc1aed32012-06-29 00:50:23 -04002261 s = &l->stats;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002262
Erik Hugnedc1aed32012-06-29 00:50:23 -04002263 if (tipc_link_is_active(l))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002264 status = "ACTIVE";
Erik Hugnedc1aed32012-06-29 00:50:23 -04002265 else if (tipc_link_is_up(l))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002266 status = "STANDBY";
2267 else
2268 status = "DEFUNCT";
Erik Hugnedc1aed32012-06-29 00:50:23 -04002269
2270 ret = tipc_snprintf(buf, buf_size, "Link <%s>\n"
2271 " %s MTU:%u Priority:%u Tolerance:%u ms"
2272 " Window:%u packets\n",
2273 l->name, status, l->max_pkt, l->priority,
2274 l->tolerance, l->queue_limit[0]);
2275
2276 ret += tipc_snprintf(buf + ret, buf_size - ret,
2277 " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
2278 l->next_in_no - s->recv_info, s->recv_fragments,
2279 s->recv_fragmented, s->recv_bundles,
2280 s->recv_bundled);
2281
2282 ret += tipc_snprintf(buf + ret, buf_size - ret,
2283 " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
2284 l->next_out_no - s->sent_info, s->sent_fragments,
2285 s->sent_fragmented, s->sent_bundles,
2286 s->sent_bundled);
2287
2288 profile_total = s->msg_length_counts;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002289 if (!profile_total)
2290 profile_total = 1;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002291
2292 ret += tipc_snprintf(buf + ret, buf_size - ret,
2293 " TX profile sample:%u packets average:%u octets\n"
2294 " 0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% "
2295 "-16384:%u%% -32768:%u%% -66000:%u%%\n",
2296 s->msg_length_counts,
2297 s->msg_lengths_total / profile_total,
2298 percent(s->msg_length_profile[0], profile_total),
2299 percent(s->msg_length_profile[1], profile_total),
2300 percent(s->msg_length_profile[2], profile_total),
2301 percent(s->msg_length_profile[3], profile_total),
2302 percent(s->msg_length_profile[4], profile_total),
2303 percent(s->msg_length_profile[5], profile_total),
2304 percent(s->msg_length_profile[6], profile_total));
2305
2306 ret += tipc_snprintf(buf + ret, buf_size - ret,
2307 " RX states:%u probes:%u naks:%u defs:%u"
2308 " dups:%u\n", s->recv_states, s->recv_probes,
2309 s->recv_nacks, s->deferred_recv, s->duplicates);
2310
2311 ret += tipc_snprintf(buf + ret, buf_size - ret,
2312 " TX states:%u probes:%u naks:%u acks:%u"
2313 " dups:%u\n", s->sent_states, s->sent_probes,
2314 s->sent_nacks, s->sent_acks, s->retransmitted);
2315
2316 ret += tipc_snprintf(buf + ret, buf_size - ret,
Ying Xue3c294cb2012-11-15 11:34:45 +08002317 " Congestion link:%u Send queue"
2318 " max:%u avg:%u\n", s->link_congs,
Erik Hugnedc1aed32012-06-29 00:50:23 -04002319 s->max_queue_sz, s->queue_sz_counts ?
2320 (s->accu_queue_sz / s->queue_sz_counts) : 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002321
Per Liden4323add2006-01-18 00:38:21 +01002322 tipc_node_unlock(node);
Erik Hugnedc1aed32012-06-29 00:50:23 -04002323 return ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002324}
2325
Per Liden4323add2006-01-18 00:38:21 +01002326struct sk_buff *tipc_link_cmd_show_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002327{
2328 struct sk_buff *buf;
2329 struct tlv_desc *rep_tlv;
2330 int str_len;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002331 int pb_len;
2332 char *pb;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002333
2334 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002335 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002336
Erik Hugnedc1aed32012-06-29 00:50:23 -04002337 buf = tipc_cfg_reply_alloc(TLV_SPACE(ULTRA_STRING_MAX_LEN));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002338 if (!buf)
2339 return NULL;
2340
2341 rep_tlv = (struct tlv_desc *)buf->data;
Erik Hugnedc1aed32012-06-29 00:50:23 -04002342 pb = TLV_DATA(rep_tlv);
2343 pb_len = ULTRA_STRING_MAX_LEN;
Per Liden4323add2006-01-18 00:38:21 +01002344 str_len = tipc_link_stats((char *)TLV_DATA(req_tlv_area),
Erik Hugnedc1aed32012-06-29 00:50:23 -04002345 pb, pb_len);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002346 if (!str_len) {
Allan Stephens5f6d9122011-11-04 13:24:29 -04002347 kfree_skb(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002348 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002349 }
Erik Hugnedc1aed32012-06-29 00:50:23 -04002350 str_len += 1; /* for "\0" */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002351 skb_put(buf, TLV_SPACE(str_len));
2352 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
2353
2354 return buf;
2355}
2356
Per Lidenb97bf3f2006-01-02 19:04:38 +01002357/**
Per Liden4323add2006-01-18 00:38:21 +01002358 * tipc_link_get_max_pkt - get maximum packet size to use when sending to destination
Per Lidenb97bf3f2006-01-02 19:04:38 +01002359 * @dest: network address of destination node
2360 * @selector: used to select from set of active links
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002361 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002362 * If no active link can be found, uses default maximum packet size.
2363 */
Per Liden4323add2006-01-18 00:38:21 +01002364u32 tipc_link_get_max_pkt(u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002365{
David S. Miller6c000552008-09-02 23:38:32 -07002366 struct tipc_node *n_ptr;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002367 struct tipc_link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002368 u32 res = MAX_PKT_DEFAULT;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002369
Per Lidenb97bf3f2006-01-02 19:04:38 +01002370 if (dest == tipc_own_addr)
2371 return MAX_MSG_SIZE;
2372
Allan Stephens51a8e4d2010-12-31 18:59:18 +00002373 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002374 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002375 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002376 l_ptr = n_ptr->active_links[selector & 1];
2377 if (l_ptr)
Allan Stephens15e979d2010-05-11 14:30:10 +00002378 res = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01002379 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002380 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002381 return res;
2382}
2383
Paul Gortmakera18c4bc2011-12-29 20:58:42 -05002384static void link_print(struct tipc_link *l_ptr, const char *str)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002385{
Ying Xue7a2f7d12014-04-21 10:55:46 +08002386 struct tipc_bearer *b_ptr;
2387
2388 rcu_read_lock();
2389 b_ptr = rcu_dereference_rtnl(bearer_list[l_ptr->bearer_id]);
2390 if (b_ptr)
2391 pr_info("%s Link %x<%s>:", str, l_ptr->addr, b_ptr->name);
2392 rcu_read_unlock();
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002393
Per Lidenb97bf3f2006-01-02 19:04:38 +01002394 if (link_working_unknown(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002395 pr_cont(":WU\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002396 else if (link_reset_reset(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002397 pr_cont(":RR\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002398 else if (link_reset_unknown(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002399 pr_cont(":RU\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002400 else if (link_working_working(l_ptr))
Paul Gortmaker5deedde2012-07-11 19:27:56 -04002401 pr_cont(":WW\n");
2402 else
2403 pr_cont("\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002404}
Richard Alpe0655f6a2014-11-20 10:29:07 +01002405
2406/* Parse and validate nested (link) properties valid for media, bearer and link
2407 */
2408int tipc_nl_parse_link_prop(struct nlattr *prop, struct nlattr *props[])
2409{
2410 int err;
2411
2412 err = nla_parse_nested(props, TIPC_NLA_PROP_MAX, prop,
2413 tipc_nl_prop_policy);
2414 if (err)
2415 return err;
2416
2417 if (props[TIPC_NLA_PROP_PRIO]) {
2418 u32 prio;
2419
2420 prio = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
2421 if (prio > TIPC_MAX_LINK_PRI)
2422 return -EINVAL;
2423 }
2424
2425 if (props[TIPC_NLA_PROP_TOL]) {
2426 u32 tol;
2427
2428 tol = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
2429 if ((tol < TIPC_MIN_LINK_TOL) || (tol > TIPC_MAX_LINK_TOL))
2430 return -EINVAL;
2431 }
2432
2433 if (props[TIPC_NLA_PROP_WIN]) {
2434 u32 win;
2435
2436 win = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
2437 if ((win < TIPC_MIN_LINK_WIN) || (win > TIPC_MAX_LINK_WIN))
2438 return -EINVAL;
2439 }
2440
2441 return 0;
2442}
Richard Alpe7be57fc2014-11-20 10:29:12 +01002443
Richard Alpef96ce7a2014-11-20 10:29:13 +01002444int tipc_nl_link_set(struct sk_buff *skb, struct genl_info *info)
2445{
2446 int err;
2447 int res = 0;
2448 int bearer_id;
2449 char *name;
2450 struct tipc_link *link;
2451 struct tipc_node *node;
2452 struct nlattr *attrs[TIPC_NLA_LINK_MAX + 1];
2453
2454 if (!info->attrs[TIPC_NLA_LINK])
2455 return -EINVAL;
2456
2457 err = nla_parse_nested(attrs, TIPC_NLA_LINK_MAX,
2458 info->attrs[TIPC_NLA_LINK],
2459 tipc_nl_link_policy);
2460 if (err)
2461 return err;
2462
2463 if (!attrs[TIPC_NLA_LINK_NAME])
2464 return -EINVAL;
2465
2466 name = nla_data(attrs[TIPC_NLA_LINK_NAME]);
2467
2468 node = tipc_link_find_owner(name, &bearer_id);
2469 if (!node)
2470 return -EINVAL;
2471
2472 tipc_node_lock(node);
2473
2474 link = node->links[bearer_id];
2475 if (!link) {
2476 res = -EINVAL;
2477 goto out;
2478 }
2479
2480 if (attrs[TIPC_NLA_LINK_PROP]) {
2481 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
2482
2483 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_LINK_PROP],
2484 props);
2485 if (err) {
2486 res = err;
2487 goto out;
2488 }
2489
2490 if (props[TIPC_NLA_PROP_TOL]) {
2491 u32 tol;
2492
2493 tol = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
2494 link_set_supervision_props(link, tol);
2495 tipc_link_proto_xmit(link, STATE_MSG, 0, 0, tol, 0, 0);
2496 }
2497 if (props[TIPC_NLA_PROP_PRIO]) {
2498 u32 prio;
2499
2500 prio = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
2501 link->priority = prio;
2502 tipc_link_proto_xmit(link, STATE_MSG, 0, 0, 0, prio, 0);
2503 }
2504 if (props[TIPC_NLA_PROP_WIN]) {
2505 u32 win;
2506
2507 win = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
2508 tipc_link_set_queue_limits(link, win);
2509 }
2510 }
2511
2512out:
2513 tipc_node_unlock(node);
2514
2515 return res;
2516}
Richard Alped8182802014-11-24 11:10:29 +01002517
2518static int __tipc_nl_add_stats(struct sk_buff *skb, struct tipc_stats *s)
Richard Alpe7be57fc2014-11-20 10:29:12 +01002519{
2520 int i;
2521 struct nlattr *stats;
2522
2523 struct nla_map {
2524 u32 key;
2525 u32 val;
2526 };
2527
2528 struct nla_map map[] = {
2529 {TIPC_NLA_STATS_RX_INFO, s->recv_info},
2530 {TIPC_NLA_STATS_RX_FRAGMENTS, s->recv_fragments},
2531 {TIPC_NLA_STATS_RX_FRAGMENTED, s->recv_fragmented},
2532 {TIPC_NLA_STATS_RX_BUNDLES, s->recv_bundles},
2533 {TIPC_NLA_STATS_RX_BUNDLED, s->recv_bundled},
2534 {TIPC_NLA_STATS_TX_INFO, s->sent_info},
2535 {TIPC_NLA_STATS_TX_FRAGMENTS, s->sent_fragments},
2536 {TIPC_NLA_STATS_TX_FRAGMENTED, s->sent_fragmented},
2537 {TIPC_NLA_STATS_TX_BUNDLES, s->sent_bundles},
2538 {TIPC_NLA_STATS_TX_BUNDLED, s->sent_bundled},
2539 {TIPC_NLA_STATS_MSG_PROF_TOT, (s->msg_length_counts) ?
2540 s->msg_length_counts : 1},
2541 {TIPC_NLA_STATS_MSG_LEN_CNT, s->msg_length_counts},
2542 {TIPC_NLA_STATS_MSG_LEN_TOT, s->msg_lengths_total},
2543 {TIPC_NLA_STATS_MSG_LEN_P0, s->msg_length_profile[0]},
2544 {TIPC_NLA_STATS_MSG_LEN_P1, s->msg_length_profile[1]},
2545 {TIPC_NLA_STATS_MSG_LEN_P2, s->msg_length_profile[2]},
2546 {TIPC_NLA_STATS_MSG_LEN_P3, s->msg_length_profile[3]},
2547 {TIPC_NLA_STATS_MSG_LEN_P4, s->msg_length_profile[4]},
2548 {TIPC_NLA_STATS_MSG_LEN_P5, s->msg_length_profile[5]},
2549 {TIPC_NLA_STATS_MSG_LEN_P6, s->msg_length_profile[6]},
2550 {TIPC_NLA_STATS_RX_STATES, s->recv_states},
2551 {TIPC_NLA_STATS_RX_PROBES, s->recv_probes},
2552 {TIPC_NLA_STATS_RX_NACKS, s->recv_nacks},
2553 {TIPC_NLA_STATS_RX_DEFERRED, s->deferred_recv},
2554 {TIPC_NLA_STATS_TX_STATES, s->sent_states},
2555 {TIPC_NLA_STATS_TX_PROBES, s->sent_probes},
2556 {TIPC_NLA_STATS_TX_NACKS, s->sent_nacks},
2557 {TIPC_NLA_STATS_TX_ACKS, s->sent_acks},
2558 {TIPC_NLA_STATS_RETRANSMITTED, s->retransmitted},
2559 {TIPC_NLA_STATS_DUPLICATES, s->duplicates},
2560 {TIPC_NLA_STATS_LINK_CONGS, s->link_congs},
2561 {TIPC_NLA_STATS_MAX_QUEUE, s->max_queue_sz},
2562 {TIPC_NLA_STATS_AVG_QUEUE, s->queue_sz_counts ?
2563 (s->accu_queue_sz / s->queue_sz_counts) : 0}
2564 };
2565
2566 stats = nla_nest_start(skb, TIPC_NLA_LINK_STATS);
2567 if (!stats)
2568 return -EMSGSIZE;
2569
2570 for (i = 0; i < ARRAY_SIZE(map); i++)
2571 if (nla_put_u32(skb, map[i].key, map[i].val))
2572 goto msg_full;
2573
2574 nla_nest_end(skb, stats);
2575
2576 return 0;
2577msg_full:
2578 nla_nest_cancel(skb, stats);
2579
2580 return -EMSGSIZE;
2581}
2582
2583/* Caller should hold appropriate locks to protect the link */
Richard Alped8182802014-11-24 11:10:29 +01002584static int __tipc_nl_add_link(struct tipc_nl_msg *msg, struct tipc_link *link)
Richard Alpe7be57fc2014-11-20 10:29:12 +01002585{
2586 int err;
2587 void *hdr;
2588 struct nlattr *attrs;
2589 struct nlattr *prop;
2590
2591 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_v2_family,
2592 NLM_F_MULTI, TIPC_NL_LINK_GET);
2593 if (!hdr)
2594 return -EMSGSIZE;
2595
2596 attrs = nla_nest_start(msg->skb, TIPC_NLA_LINK);
2597 if (!attrs)
2598 goto msg_full;
2599
2600 if (nla_put_string(msg->skb, TIPC_NLA_LINK_NAME, link->name))
2601 goto attr_msg_full;
2602 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_DEST,
2603 tipc_cluster_mask(tipc_own_addr)))
2604 goto attr_msg_full;
2605 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_MTU, link->max_pkt))
2606 goto attr_msg_full;
2607 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_RX, link->next_in_no))
2608 goto attr_msg_full;
2609 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_TX, link->next_out_no))
2610 goto attr_msg_full;
2611
2612 if (tipc_link_is_up(link))
2613 if (nla_put_flag(msg->skb, TIPC_NLA_LINK_UP))
2614 goto attr_msg_full;
2615 if (tipc_link_is_active(link))
2616 if (nla_put_flag(msg->skb, TIPC_NLA_LINK_ACTIVE))
2617 goto attr_msg_full;
2618
2619 prop = nla_nest_start(msg->skb, TIPC_NLA_LINK_PROP);
2620 if (!prop)
2621 goto attr_msg_full;
2622 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, link->priority))
2623 goto prop_msg_full;
2624 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_TOL, link->tolerance))
2625 goto prop_msg_full;
2626 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN,
2627 link->queue_limit[TIPC_LOW_IMPORTANCE]))
2628 goto prop_msg_full;
2629 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, link->priority))
2630 goto prop_msg_full;
2631 nla_nest_end(msg->skb, prop);
2632
2633 err = __tipc_nl_add_stats(msg->skb, &link->stats);
2634 if (err)
2635 goto attr_msg_full;
2636
2637 nla_nest_end(msg->skb, attrs);
2638 genlmsg_end(msg->skb, hdr);
2639
2640 return 0;
2641
2642prop_msg_full:
2643 nla_nest_cancel(msg->skb, prop);
2644attr_msg_full:
2645 nla_nest_cancel(msg->skb, attrs);
2646msg_full:
2647 genlmsg_cancel(msg->skb, hdr);
2648
2649 return -EMSGSIZE;
2650}
2651
2652/* Caller should hold node lock */
Richard Alped8182802014-11-24 11:10:29 +01002653static int __tipc_nl_add_node_links(struct tipc_nl_msg *msg,
2654 struct tipc_node *node,
2655 u32 *prev_link)
Richard Alpe7be57fc2014-11-20 10:29:12 +01002656{
2657 u32 i;
2658 int err;
2659
2660 for (i = *prev_link; i < MAX_BEARERS; i++) {
2661 *prev_link = i;
2662
2663 if (!node->links[i])
2664 continue;
2665
2666 err = __tipc_nl_add_link(msg, node->links[i]);
2667 if (err)
2668 return err;
2669 }
2670 *prev_link = 0;
2671
2672 return 0;
2673}
2674
2675int tipc_nl_link_dump(struct sk_buff *skb, struct netlink_callback *cb)
2676{
2677 struct tipc_node *node;
2678 struct tipc_nl_msg msg;
2679 u32 prev_node = cb->args[0];
2680 u32 prev_link = cb->args[1];
2681 int done = cb->args[2];
2682 int err;
2683
2684 if (done)
2685 return 0;
2686
2687 msg.skb = skb;
2688 msg.portid = NETLINK_CB(cb->skb).portid;
2689 msg.seq = cb->nlh->nlmsg_seq;
2690
2691 rcu_read_lock();
2692
2693 if (prev_node) {
2694 node = tipc_node_find(prev_node);
2695 if (!node) {
2696 /* We never set seq or call nl_dump_check_consistent()
2697 * this means that setting prev_seq here will cause the
2698 * consistence check to fail in the netlink callback
2699 * handler. Resulting in the last NLMSG_DONE message
2700 * having the NLM_F_DUMP_INTR flag set.
2701 */
2702 cb->prev_seq = 1;
2703 goto out;
2704 }
2705
2706 list_for_each_entry_continue_rcu(node, &tipc_node_list, list) {
2707 tipc_node_lock(node);
2708 err = __tipc_nl_add_node_links(&msg, node, &prev_link);
2709 tipc_node_unlock(node);
2710 if (err)
2711 goto out;
2712
2713 prev_node = node->addr;
2714 }
2715 } else {
2716 err = tipc_nl_add_bc_link(&msg);
2717 if (err)
2718 goto out;
2719
2720 list_for_each_entry_rcu(node, &tipc_node_list, list) {
2721 tipc_node_lock(node);
2722 err = __tipc_nl_add_node_links(&msg, node, &prev_link);
2723 tipc_node_unlock(node);
2724 if (err)
2725 goto out;
2726
2727 prev_node = node->addr;
2728 }
2729 }
2730 done = 1;
2731out:
2732 rcu_read_unlock();
2733
2734 cb->args[0] = prev_node;
2735 cb->args[1] = prev_link;
2736 cb->args[2] = done;
2737
2738 return skb->len;
2739}
2740
2741int tipc_nl_link_get(struct sk_buff *skb, struct genl_info *info)
2742{
2743 struct sk_buff *ans_skb;
2744 struct tipc_nl_msg msg;
2745 struct tipc_link *link;
2746 struct tipc_node *node;
2747 char *name;
2748 int bearer_id;
2749 int err;
2750
2751 if (!info->attrs[TIPC_NLA_LINK_NAME])
2752 return -EINVAL;
2753
2754 name = nla_data(info->attrs[TIPC_NLA_LINK_NAME]);
2755 node = tipc_link_find_owner(name, &bearer_id);
2756 if (!node)
2757 return -EINVAL;
2758
2759 ans_skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
2760 if (!ans_skb)
2761 return -ENOMEM;
2762
2763 msg.skb = ans_skb;
2764 msg.portid = info->snd_portid;
2765 msg.seq = info->snd_seq;
2766
2767 tipc_node_lock(node);
2768 link = node->links[bearer_id];
2769 if (!link) {
2770 err = -EINVAL;
2771 goto err_out;
2772 }
2773
2774 err = __tipc_nl_add_link(&msg, link);
2775 if (err)
2776 goto err_out;
2777
2778 tipc_node_unlock(node);
2779
2780 return genlmsg_reply(ans_skb, info);
2781
2782err_out:
2783 tipc_node_unlock(node);
2784 nlmsg_free(ans_skb);
2785
2786 return err;
2787}
Richard Alpeae363422014-11-20 10:29:14 +01002788
2789int tipc_nl_link_reset_stats(struct sk_buff *skb, struct genl_info *info)
2790{
2791 int err;
2792 char *link_name;
2793 unsigned int bearer_id;
2794 struct tipc_link *link;
2795 struct tipc_node *node;
2796 struct nlattr *attrs[TIPC_NLA_LINK_MAX + 1];
2797
2798 if (!info->attrs[TIPC_NLA_LINK])
2799 return -EINVAL;
2800
2801 err = nla_parse_nested(attrs, TIPC_NLA_LINK_MAX,
2802 info->attrs[TIPC_NLA_LINK],
2803 tipc_nl_link_policy);
2804 if (err)
2805 return err;
2806
2807 if (!attrs[TIPC_NLA_LINK_NAME])
2808 return -EINVAL;
2809
2810 link_name = nla_data(attrs[TIPC_NLA_LINK_NAME]);
2811
2812 if (strcmp(link_name, tipc_bclink_name) == 0) {
2813 err = tipc_bclink_reset_stats();
2814 if (err)
2815 return err;
2816 return 0;
2817 }
2818
2819 node = tipc_link_find_owner(link_name, &bearer_id);
2820 if (!node)
2821 return -EINVAL;
2822
2823 tipc_node_lock(node);
2824
2825 link = node->links[bearer_id];
2826 if (!link) {
2827 tipc_node_unlock(node);
2828 return -EINVAL;
2829 }
2830
2831 link_reset_statistics(link);
2832
2833 tipc_node_unlock(node);
2834
2835 return 0;
2836}