tipc: remove tipc_core_start/stop routines
[linux-2.6-block.git] / net / tipc / link.c
CommitLineData
b97bf3fd
PL
1/*
2 * net/tipc/link.c: TIPC link code
c4307285 3 *
170b3927 4 * Copyright (c) 1996-2007, 2012-2014, Ericsson AB
198d73b8 5 * Copyright (c) 2004-2007, 2010-2013, Wind River Systems
b97bf3fd
PL
6 * All rights reserved.
7 *
9ea1fd3c 8 * Redistribution and use in source and binary forms, with or without
b97bf3fd
PL
9 * modification, are permitted provided that the following conditions are met:
10 *
9ea1fd3c
PL
11 * 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.
b97bf3fd 19 *
9ea1fd3c
PL
20 * 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
b97bf3fd
PL
34 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include "core.h"
b97bf3fd 38#include "link.h"
7be57fc6 39#include "bcast.h"
9816f061 40#include "socket.h"
b97bf3fd 41#include "name_distr.h"
b97bf3fd
PL
42#include "discover.h"
43#include "config.h"
0655f6a8 44#include "netlink.h"
b97bf3fd 45
796c75d0
YX
46#include <linux/pkt_sched.h>
47
2cf8aa19
EH
48/*
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 ";
b97bf3fd 54
7be57fc6
RA
55static 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
0655f6a8
RA
71/* 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
a686e685
AS
79/*
80 * Out-of-range value for link session numbers
81 */
a686e685
AS
82#define INVALID_SESSION 0x10000
83
c4307285
YH
84/*
85 * Link state events:
b97bf3fd 86 */
b97bf3fd
PL
87#define STARTING_EVT 856384768 /* link processing trigger */
88#define TRAFFIC_MSG_EVT 560815u /* rx'd ??? */
89#define TIMEOUT_EVT 560817u /* link timer expired */
90
c4307285
YH
91/*
92 * The following two 'message types' is really just implementation
93 * data conveniently stored in the message header.
b97bf3fd
PL
94 * They must not be considered part of the protocol
95 */
96#define OPEN_MSG 0
97#define CLOSED_MSG 1
98
c4307285 99/*
b97bf3fd
PL
100 * State value stored in 'exp_msg_count'
101 */
b97bf3fd
PL
102#define START_CHANGEOVER 100000u
103
a18c4bc3 104static void link_handle_out_of_seq_msg(struct tipc_link *l_ptr,
b97bf3fd 105 struct sk_buff *buf);
247f0f3c 106static void tipc_link_proto_rcv(struct tipc_link *l_ptr, struct sk_buff *buf);
3bb53380 107static int tipc_link_tunnel_rcv(struct tipc_node *n_ptr,
170b3927 108 struct sk_buff **buf);
a18c4bc3 109static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tolerance);
a18c4bc3
PG
110static 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);
247f0f3c
YX
113static void tipc_link_sync_xmit(struct tipc_link *l);
114static void tipc_link_sync_rcv(struct tipc_node *n, struct sk_buff *buf);
7ae934be
EH
115static 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);
31e3c3f6 117
b97bf3fd 118/*
05790c64 119 * Simple link routines
b97bf3fd 120 */
05790c64 121static unsigned int align(unsigned int i)
b97bf3fd
PL
122{
123 return (i + 3) & ~3u;
124}
125
a18c4bc3 126static void link_init_max_pkt(struct tipc_link *l_ptr)
b97bf3fd 127{
7a2f7d18 128 struct tipc_bearer *b_ptr;
b97bf3fd 129 u32 max_pkt;
c4307285 130
7a2f7d18
YX
131 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
b97bf3fd
PL
140 if (max_pkt > MAX_MSG_SIZE)
141 max_pkt = MAX_MSG_SIZE;
142
c4307285 143 l_ptr->max_pkt_target = max_pkt;
b97bf3fd
PL
144 if (l_ptr->max_pkt_target < MAX_PKT_DEFAULT)
145 l_ptr->max_pkt = l_ptr->max_pkt_target;
c4307285 146 else
b97bf3fd
PL
147 l_ptr->max_pkt = MAX_PKT_DEFAULT;
148
c4307285 149 l_ptr->max_pkt_probes = 0;
b97bf3fd
PL
150}
151
b97bf3fd 152/*
05790c64 153 * Simple non-static link routines (i.e. referenced outside this file)
b97bf3fd 154 */
a18c4bc3 155int tipc_link_is_up(struct tipc_link *l_ptr)
b97bf3fd
PL
156{
157 if (!l_ptr)
158 return 0;
a02cec21 159 return link_working_working(l_ptr) || link_working_unknown(l_ptr);
b97bf3fd
PL
160}
161
a18c4bc3 162int tipc_link_is_active(struct tipc_link *l_ptr)
b97bf3fd 163{
a02cec21
ED
164 return (l_ptr->owner->active_links[0] == l_ptr) ||
165 (l_ptr->owner->active_links[1] == l_ptr);
b97bf3fd
PL
166}
167
b97bf3fd
PL
168/**
169 * link_timeout - handle expiration of link timer
170 * @l_ptr: pointer to link
b97bf3fd 171 */
a18c4bc3 172static void link_timeout(struct tipc_link *l_ptr)
b97bf3fd 173{
58dc55f2
YX
174 struct sk_buff *skb;
175
4323add6 176 tipc_node_lock(l_ptr->owner);
b97bf3fd
PL
177
178 /* update counters used in statistical profiling of send traffic */
58dc55f2 179 l_ptr->stats.accu_queue_sz += skb_queue_len(&l_ptr->outqueue);
b97bf3fd
PL
180 l_ptr->stats.queue_sz_counts++;
181
58dc55f2
YX
182 skb = skb_peek(&l_ptr->outqueue);
183 if (skb) {
184 struct tipc_msg *msg = buf_msg(skb);
b97bf3fd
PL
185 u32 length = msg_size(msg);
186
f64f9e71
JP
187 if ((msg_user(msg) == MSG_FRAGMENTER) &&
188 (msg_type(msg) == FIRST_FRAGMENT)) {
b97bf3fd
PL
189 length = msg_size(msg_get_wrapped(msg));
190 }
191 if (length) {
192 l_ptr->stats.msg_lengths_total += length;
193 l_ptr->stats.msg_length_counts++;
194 if (length <= 64)
195 l_ptr->stats.msg_length_profile[0]++;
196 else if (length <= 256)
197 l_ptr->stats.msg_length_profile[1]++;
198 else if (length <= 1024)
199 l_ptr->stats.msg_length_profile[2]++;
200 else if (length <= 4096)
201 l_ptr->stats.msg_length_profile[3]++;
202 else if (length <= 16384)
203 l_ptr->stats.msg_length_profile[4]++;
204 else if (length <= 32768)
205 l_ptr->stats.msg_length_profile[5]++;
206 else
207 l_ptr->stats.msg_length_profile[6]++;
208 }
209 }
210
211 /* do all other link processing performed on a periodic basis */
b97bf3fd
PL
212 link_state_event(l_ptr, TIMEOUT_EVT);
213
214 if (l_ptr->next_out)
47b4c9a8 215 tipc_link_push_packets(l_ptr);
b97bf3fd 216
4323add6 217 tipc_node_unlock(l_ptr->owner);
b97bf3fd
PL
218}
219
a18c4bc3 220static void link_set_timer(struct tipc_link *l_ptr, u32 time)
b97bf3fd
PL
221{
222 k_start_timer(&l_ptr->timer, time);
223}
224
225/**
4323add6 226 * tipc_link_create - create a new link
37b9c08a 227 * @n_ptr: pointer to associated node
b97bf3fd 228 * @b_ptr: pointer to associated bearer
b97bf3fd 229 * @media_addr: media address to use when sending messages over link
c4307285 230 *
b97bf3fd
PL
231 * Returns pointer to link.
232 */
a18c4bc3 233struct tipc_link *tipc_link_create(struct tipc_node *n_ptr,
c61dd61d
YX
234 struct tipc_bearer *b_ptr,
235 const struct tipc_media_addr *media_addr)
b97bf3fd 236{
a18c4bc3 237 struct tipc_link *l_ptr;
b97bf3fd
PL
238 struct tipc_msg *msg;
239 char *if_name;
37b9c08a
AS
240 char addr_string[16];
241 u32 peer = n_ptr->addr;
242
0372bf5c 243 if (n_ptr->link_cnt >= MAX_BEARERS) {
37b9c08a 244 tipc_addr_string_fill(addr_string, n_ptr->addr);
0372bf5c
HB
245 pr_err("Attempt to establish %uth link to %s. Max %u allowed.\n",
246 n_ptr->link_cnt, addr_string, MAX_BEARERS);
37b9c08a
AS
247 return NULL;
248 }
249
250 if (n_ptr->links[b_ptr->identity]) {
251 tipc_addr_string_fill(addr_string, n_ptr->addr);
2cf8aa19
EH
252 pr_err("Attempt to establish second link on <%s> to %s\n",
253 b_ptr->name, addr_string);
37b9c08a
AS
254 return NULL;
255 }
b97bf3fd 256
0da974f4 257 l_ptr = kzalloc(sizeof(*l_ptr), GFP_ATOMIC);
b97bf3fd 258 if (!l_ptr) {
2cf8aa19 259 pr_warn("Link creation failed, no memory\n");
b97bf3fd
PL
260 return NULL;
261 }
b97bf3fd
PL
262
263 l_ptr->addr = peer;
2d627b92 264 if_name = strchr(b_ptr->name, ':') + 1;
062b4c99 265 sprintf(l_ptr->name, "%u.%u.%u:%s-%u.%u.%u:unknown",
b97bf3fd 266 tipc_zone(tipc_own_addr), tipc_cluster(tipc_own_addr),
c4307285 267 tipc_node(tipc_own_addr),
b97bf3fd
PL
268 if_name,
269 tipc_zone(peer), tipc_cluster(peer), tipc_node(peer));
062b4c99 270 /* note: peer i/f name is updated by reset/activate message */
b97bf3fd 271 memcpy(&l_ptr->media_addr, media_addr, sizeof(*media_addr));
37b9c08a 272 l_ptr->owner = n_ptr;
b97bf3fd 273 l_ptr->checkpoint = 1;
f882cb76 274 l_ptr->peer_session = INVALID_SESSION;
7a2f7d18 275 l_ptr->bearer_id = b_ptr->identity;
5c216e1d 276 link_set_supervision_props(l_ptr, b_ptr->tolerance);
b97bf3fd
PL
277 l_ptr->state = RESET_UNKNOWN;
278
279 l_ptr->pmsg = (struct tipc_msg *)&l_ptr->proto_msg;
280 msg = l_ptr->pmsg;
c68ca7b7 281 tipc_msg_init(msg, LINK_PROTOCOL, RESET_MSG, INT_H_SIZE, l_ptr->addr);
b97bf3fd 282 msg_set_size(msg, sizeof(l_ptr->proto_msg));
a686e685 283 msg_set_session(msg, (tipc_random & 0xffff));
b97bf3fd
PL
284 msg_set_bearer_id(msg, b_ptr->identity);
285 strcpy((char *)msg_data(msg), if_name);
286
287 l_ptr->priority = b_ptr->priority;
5c216e1d 288 tipc_link_set_queue_limits(l_ptr, b_ptr->window);
b97bf3fd 289
7a2f7d18 290 l_ptr->net_plane = b_ptr->net_plane;
b97bf3fd
PL
291 link_init_max_pkt(l_ptr);
292
293 l_ptr->next_out_no = 1;
58dc55f2 294 __skb_queue_head_init(&l_ptr->outqueue);
bc6fecd4 295 __skb_queue_head_init(&l_ptr->deferred_queue);
340b6e59 296 skb_queue_head_init(&l_ptr->waiting_sks);
b97bf3fd
PL
297
298 link_reset_statistics(l_ptr);
299
37b9c08a 300 tipc_node_attach_link(n_ptr, l_ptr);
b97bf3fd 301
170b3927
JPM
302 k_init_timer(&l_ptr->timer, (Handler)link_timeout,
303 (unsigned long)l_ptr);
581465fa
JPM
304
305 link_state_event(l_ptr, STARTING_EVT);
b97bf3fd 306
b97bf3fd
PL
307 return l_ptr;
308}
309
7d33939f 310void tipc_link_delete_list(unsigned int bearer_id, bool shutting_down)
8d8439b6
YX
311{
312 struct tipc_link *l_ptr;
c61dd61d 313 struct tipc_node *n_ptr;
8d8439b6 314
6c7a762e
YX
315 rcu_read_lock();
316 list_for_each_entry_rcu(n_ptr, &tipc_node_list, list) {
5356f3d7 317 tipc_node_lock(n_ptr);
c61dd61d
YX
318 l_ptr = n_ptr->links[bearer_id];
319 if (l_ptr) {
320 tipc_link_reset(l_ptr);
7d33939f
JPM
321 if (shutting_down || !tipc_node_is_up(n_ptr)) {
322 tipc_node_detach_link(l_ptr->owner, l_ptr);
323 tipc_link_reset_fragments(l_ptr);
5356f3d7 324 tipc_node_unlock(n_ptr);
7d33939f
JPM
325
326 /* Nobody else can access this link now: */
327 del_timer_sync(&l_ptr->timer);
328 kfree(l_ptr);
329 } else {
330 /* Detach/delete when failover is finished: */
331 l_ptr->flags |= LINK_STOPPED;
5356f3d7 332 tipc_node_unlock(n_ptr);
7d33939f
JPM
333 del_timer_sync(&l_ptr->timer);
334 }
c61dd61d
YX
335 continue;
336 }
5356f3d7 337 tipc_node_unlock(n_ptr);
8d8439b6 338 }
6c7a762e 339 rcu_read_unlock();
8d8439b6 340}
b97bf3fd
PL
341
342/**
50100a5e
JPM
343 * link_schedule_user - schedule user for wakeup after congestion
344 * @link: congested link
345 * @oport: sending port
346 * @chain_sz: size of buffer chain that was attempted sent
347 * @imp: importance of message attempted sent
348 * Create pseudo msg to send back to user when congestion abates
b97bf3fd 349 */
50100a5e
JPM
350static bool link_schedule_user(struct tipc_link *link, u32 oport,
351 uint chain_sz, uint imp)
b97bf3fd 352{
50100a5e
JPM
353 struct sk_buff *buf;
354
355 buf = tipc_msg_create(SOCK_WAKEUP, 0, INT_H_SIZE, 0, tipc_own_addr,
356 tipc_own_addr, oport, 0, 0);
357 if (!buf)
358 return false;
359 TIPC_SKB_CB(buf)->chain_sz = chain_sz;
360 TIPC_SKB_CB(buf)->chain_imp = imp;
340b6e59 361 skb_queue_tail(&link->waiting_sks, buf);
50100a5e
JPM
362 link->stats.link_congs++;
363 return true;
b97bf3fd
PL
364}
365
50100a5e
JPM
366/**
367 * link_prepare_wakeup - prepare users for wakeup after congestion
368 * @link: congested link
369 * Move a number of waiting users, as permitted by available space in
370 * the send queue, from link wait queue to node wait queue for wakeup
371 */
372static void link_prepare_wakeup(struct tipc_link *link)
b97bf3fd 373{
58dc55f2 374 uint pend_qsz = skb_queue_len(&link->outqueue);
58d78b32 375 struct sk_buff *skb, *tmp;
50100a5e 376
58d78b32
YX
377 skb_queue_walk_safe(&link->waiting_sks, skb, tmp) {
378 if (pend_qsz >= link->queue_limit[TIPC_SKB_CB(skb)->chain_imp])
b97bf3fd 379 break;
58d78b32 380 pend_qsz += TIPC_SKB_CB(skb)->chain_sz;
340b6e59
RA
381 skb_unlink(skb, &link->waiting_sks);
382 skb_queue_tail(&link->owner->waiting_sks, skb);
b97bf3fd 383 }
b97bf3fd
PL
384}
385
b97bf3fd 386/**
4323add6 387 * tipc_link_reset_fragments - purge link's inbound message fragments queue
b97bf3fd
PL
388 * @l_ptr: pointer to link
389 */
a18c4bc3 390void tipc_link_reset_fragments(struct tipc_link *l_ptr)
b97bf3fd 391{
37e22164
JPM
392 kfree_skb(l_ptr->reasm_buf);
393 l_ptr->reasm_buf = NULL;
b97bf3fd
PL
394}
395
c4307285 396/**
581465fa 397 * tipc_link_purge_queues - purge all pkt queues associated with link
b97bf3fd
PL
398 * @l_ptr: pointer to link
399 */
581465fa 400void tipc_link_purge_queues(struct tipc_link *l_ptr)
b97bf3fd 401{
bc6fecd4 402 __skb_queue_purge(&l_ptr->deferred_queue);
58dc55f2 403 __skb_queue_purge(&l_ptr->outqueue);
4323add6 404 tipc_link_reset_fragments(l_ptr);
b97bf3fd
PL
405}
406
a18c4bc3 407void tipc_link_reset(struct tipc_link *l_ptr)
b97bf3fd 408{
b97bf3fd
PL
409 u32 prev_state = l_ptr->state;
410 u32 checkpoint = l_ptr->next_in_no;
5392d646 411 int was_active_link = tipc_link_is_active(l_ptr);
50100a5e 412 struct tipc_node *owner = l_ptr->owner;
c4307285 413
a686e685 414 msg_set_session(l_ptr->pmsg, ((msg_session(l_ptr->pmsg) + 1) & 0xffff));
b97bf3fd 415
a686e685
AS
416 /* Link is down, accept any session */
417 l_ptr->peer_session = INVALID_SESSION;
b97bf3fd 418
c4307285 419 /* Prepare for max packet size negotiation */
b97bf3fd 420 link_init_max_pkt(l_ptr);
c4307285 421
b97bf3fd 422 l_ptr->state = RESET_UNKNOWN;
b97bf3fd
PL
423
424 if ((prev_state == RESET_UNKNOWN) || (prev_state == RESET_RESET))
425 return;
426
4323add6 427 tipc_node_link_down(l_ptr->owner, l_ptr);
7a2f7d18 428 tipc_bearer_remove_dest(l_ptr->bearer_id, l_ptr->addr);
7368ddf1 429
b9d4c339 430 if (was_active_link && tipc_node_active_links(l_ptr->owner)) {
b97bf3fd
PL
431 l_ptr->reset_checkpoint = checkpoint;
432 l_ptr->exp_msg_count = START_CHANGEOVER;
433 }
434
435 /* Clean up all queues: */
58dc55f2 436 __skb_queue_purge(&l_ptr->outqueue);
bc6fecd4 437 __skb_queue_purge(&l_ptr->deferred_queue);
50100a5e
JPM
438 if (!skb_queue_empty(&l_ptr->waiting_sks)) {
439 skb_queue_splice_init(&l_ptr->waiting_sks, &owner->waiting_sks);
440 owner->action_flags |= TIPC_WAKEUP_USERS;
441 }
b97bf3fd
PL
442 l_ptr->next_out = NULL;
443 l_ptr->unacked_window = 0;
444 l_ptr->checkpoint = 1;
445 l_ptr->next_out_no = 1;
b97bf3fd
PL
446 l_ptr->fsm_msg_cnt = 0;
447 l_ptr->stale_count = 0;
448 link_reset_statistics(l_ptr);
b97bf3fd
PL
449}
450
c61dd61d 451void tipc_link_reset_list(unsigned int bearer_id)
e0ca2c30
YX
452{
453 struct tipc_link *l_ptr;
c61dd61d 454 struct tipc_node *n_ptr;
e0ca2c30 455
6c7a762e
YX
456 rcu_read_lock();
457 list_for_each_entry_rcu(n_ptr, &tipc_node_list, list) {
5356f3d7 458 tipc_node_lock(n_ptr);
c61dd61d
YX
459 l_ptr = n_ptr->links[bearer_id];
460 if (l_ptr)
461 tipc_link_reset(l_ptr);
5356f3d7 462 tipc_node_unlock(n_ptr);
e0ca2c30 463 }
6c7a762e 464 rcu_read_unlock();
e0ca2c30 465}
b97bf3fd 466
a18c4bc3 467static void link_activate(struct tipc_link *l_ptr)
b97bf3fd 468{
5392d646 469 l_ptr->next_in_no = l_ptr->stats.recv_info = 1;
4323add6 470 tipc_node_link_up(l_ptr->owner, l_ptr);
7a2f7d18 471 tipc_bearer_add_dest(l_ptr->bearer_id, l_ptr->addr);
b97bf3fd
PL
472}
473
474/**
475 * link_state_event - link finite state machine
476 * @l_ptr: pointer to link
477 * @event: state machine event to process
478 */
95c96174 479static void link_state_event(struct tipc_link *l_ptr, unsigned int event)
b97bf3fd 480{
a18c4bc3 481 struct tipc_link *other;
b97bf3fd
PL
482 u32 cont_intv = l_ptr->continuity_interval;
483
7d33939f
JPM
484 if (l_ptr->flags & LINK_STOPPED)
485 return;
486
135daee6 487 if (!(l_ptr->flags & LINK_STARTED) && (event != STARTING_EVT))
b97bf3fd
PL
488 return; /* Not yet. */
489
77a7e07a
YX
490 /* Check whether changeover is going on */
491 if (l_ptr->exp_msg_count) {
a016892c 492 if (event == TIMEOUT_EVT)
b97bf3fd 493 link_set_timer(l_ptr, cont_intv);
77a7e07a 494 return;
b97bf3fd 495 }
b97bf3fd
PL
496
497 switch (l_ptr->state) {
498 case WORKING_WORKING:
b97bf3fd
PL
499 switch (event) {
500 case TRAFFIC_MSG_EVT:
b97bf3fd 501 case ACTIVATE_MSG:
b97bf3fd
PL
502 break;
503 case TIMEOUT_EVT:
b97bf3fd
PL
504 if (l_ptr->next_in_no != l_ptr->checkpoint) {
505 l_ptr->checkpoint = l_ptr->next_in_no;
4323add6 506 if (tipc_bclink_acks_missing(l_ptr->owner)) {
247f0f3c
YX
507 tipc_link_proto_xmit(l_ptr, STATE_MSG,
508 0, 0, 0, 0, 0);
b97bf3fd
PL
509 l_ptr->fsm_msg_cnt++;
510 } else if (l_ptr->max_pkt < l_ptr->max_pkt_target) {
247f0f3c
YX
511 tipc_link_proto_xmit(l_ptr, STATE_MSG,
512 1, 0, 0, 0, 0);
b97bf3fd
PL
513 l_ptr->fsm_msg_cnt++;
514 }
515 link_set_timer(l_ptr, cont_intv);
516 break;
517 }
b97bf3fd
PL
518 l_ptr->state = WORKING_UNKNOWN;
519 l_ptr->fsm_msg_cnt = 0;
247f0f3c 520 tipc_link_proto_xmit(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
b97bf3fd
PL
521 l_ptr->fsm_msg_cnt++;
522 link_set_timer(l_ptr, cont_intv / 4);
523 break;
524 case RESET_MSG:
2cf8aa19
EH
525 pr_info("%s<%s>, requested by peer\n", link_rst_msg,
526 l_ptr->name);
4323add6 527 tipc_link_reset(l_ptr);
b97bf3fd
PL
528 l_ptr->state = RESET_RESET;
529 l_ptr->fsm_msg_cnt = 0;
247f0f3c
YX
530 tipc_link_proto_xmit(l_ptr, ACTIVATE_MSG,
531 0, 0, 0, 0, 0);
b97bf3fd
PL
532 l_ptr->fsm_msg_cnt++;
533 link_set_timer(l_ptr, cont_intv);
534 break;
535 default:
2cf8aa19 536 pr_err("%s%u in WW state\n", link_unk_evt, event);
b97bf3fd
PL
537 }
538 break;
539 case WORKING_UNKNOWN:
b97bf3fd
PL
540 switch (event) {
541 case TRAFFIC_MSG_EVT:
b97bf3fd 542 case ACTIVATE_MSG:
b97bf3fd
PL
543 l_ptr->state = WORKING_WORKING;
544 l_ptr->fsm_msg_cnt = 0;
545 link_set_timer(l_ptr, cont_intv);
546 break;
547 case RESET_MSG:
2cf8aa19
EH
548 pr_info("%s<%s>, requested by peer while probing\n",
549 link_rst_msg, l_ptr->name);
4323add6 550 tipc_link_reset(l_ptr);
b97bf3fd
PL
551 l_ptr->state = RESET_RESET;
552 l_ptr->fsm_msg_cnt = 0;
247f0f3c
YX
553 tipc_link_proto_xmit(l_ptr, ACTIVATE_MSG,
554 0, 0, 0, 0, 0);
b97bf3fd
PL
555 l_ptr->fsm_msg_cnt++;
556 link_set_timer(l_ptr, cont_intv);
557 break;
558 case TIMEOUT_EVT:
b97bf3fd 559 if (l_ptr->next_in_no != l_ptr->checkpoint) {
b97bf3fd
PL
560 l_ptr->state = WORKING_WORKING;
561 l_ptr->fsm_msg_cnt = 0;
562 l_ptr->checkpoint = l_ptr->next_in_no;
4323add6 563 if (tipc_bclink_acks_missing(l_ptr->owner)) {
247f0f3c
YX
564 tipc_link_proto_xmit(l_ptr, STATE_MSG,
565 0, 0, 0, 0, 0);
b97bf3fd
PL
566 l_ptr->fsm_msg_cnt++;
567 }
568 link_set_timer(l_ptr, cont_intv);
569 } else if (l_ptr->fsm_msg_cnt < l_ptr->abort_limit) {
247f0f3c
YX
570 tipc_link_proto_xmit(l_ptr, STATE_MSG,
571 1, 0, 0, 0, 0);
b97bf3fd
PL
572 l_ptr->fsm_msg_cnt++;
573 link_set_timer(l_ptr, cont_intv / 4);
574 } else { /* Link has failed */
2cf8aa19
EH
575 pr_warn("%s<%s>, peer not responding\n",
576 link_rst_msg, l_ptr->name);
4323add6 577 tipc_link_reset(l_ptr);
b97bf3fd
PL
578 l_ptr->state = RESET_UNKNOWN;
579 l_ptr->fsm_msg_cnt = 0;
247f0f3c
YX
580 tipc_link_proto_xmit(l_ptr, RESET_MSG,
581 0, 0, 0, 0, 0);
b97bf3fd
PL
582 l_ptr->fsm_msg_cnt++;
583 link_set_timer(l_ptr, cont_intv);
584 }
585 break;
586 default:
2cf8aa19 587 pr_err("%s%u in WU state\n", link_unk_evt, event);
b97bf3fd
PL
588 }
589 break;
590 case RESET_UNKNOWN:
b97bf3fd
PL
591 switch (event) {
592 case TRAFFIC_MSG_EVT:
b97bf3fd
PL
593 break;
594 case ACTIVATE_MSG:
595 other = l_ptr->owner->active_links[0];
8d64a5ba 596 if (other && link_working_unknown(other))
b97bf3fd 597 break;
b97bf3fd
PL
598 l_ptr->state = WORKING_WORKING;
599 l_ptr->fsm_msg_cnt = 0;
600 link_activate(l_ptr);
247f0f3c 601 tipc_link_proto_xmit(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
b97bf3fd 602 l_ptr->fsm_msg_cnt++;
c64f7a6a 603 if (l_ptr->owner->working_links == 1)
247f0f3c 604 tipc_link_sync_xmit(l_ptr);
b97bf3fd
PL
605 link_set_timer(l_ptr, cont_intv);
606 break;
607 case RESET_MSG:
b97bf3fd
PL
608 l_ptr->state = RESET_RESET;
609 l_ptr->fsm_msg_cnt = 0;
247f0f3c
YX
610 tipc_link_proto_xmit(l_ptr, ACTIVATE_MSG,
611 1, 0, 0, 0, 0);
b97bf3fd
PL
612 l_ptr->fsm_msg_cnt++;
613 link_set_timer(l_ptr, cont_intv);
614 break;
615 case STARTING_EVT:
135daee6 616 l_ptr->flags |= LINK_STARTED;
b97bf3fd
PL
617 /* fall through */
618 case TIMEOUT_EVT:
247f0f3c 619 tipc_link_proto_xmit(l_ptr, RESET_MSG, 0, 0, 0, 0, 0);
b97bf3fd
PL
620 l_ptr->fsm_msg_cnt++;
621 link_set_timer(l_ptr, cont_intv);
622 break;
623 default:
2cf8aa19 624 pr_err("%s%u in RU state\n", link_unk_evt, event);
b97bf3fd
PL
625 }
626 break;
627 case RESET_RESET:
b97bf3fd
PL
628 switch (event) {
629 case TRAFFIC_MSG_EVT:
b97bf3fd
PL
630 case ACTIVATE_MSG:
631 other = l_ptr->owner->active_links[0];
8d64a5ba 632 if (other && link_working_unknown(other))
b97bf3fd 633 break;
b97bf3fd
PL
634 l_ptr->state = WORKING_WORKING;
635 l_ptr->fsm_msg_cnt = 0;
636 link_activate(l_ptr);
247f0f3c 637 tipc_link_proto_xmit(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
b97bf3fd 638 l_ptr->fsm_msg_cnt++;
c64f7a6a 639 if (l_ptr->owner->working_links == 1)
247f0f3c 640 tipc_link_sync_xmit(l_ptr);
b97bf3fd
PL
641 link_set_timer(l_ptr, cont_intv);
642 break;
643 case RESET_MSG:
b97bf3fd
PL
644 break;
645 case TIMEOUT_EVT:
247f0f3c
YX
646 tipc_link_proto_xmit(l_ptr, ACTIVATE_MSG,
647 0, 0, 0, 0, 0);
b97bf3fd
PL
648 l_ptr->fsm_msg_cnt++;
649 link_set_timer(l_ptr, cont_intv);
b97bf3fd
PL
650 break;
651 default:
2cf8aa19 652 pr_err("%s%u in RR state\n", link_unk_evt, event);
b97bf3fd
PL
653 }
654 break;
655 default:
2cf8aa19 656 pr_err("Unknown link state %u/%u\n", l_ptr->state, event);
b97bf3fd
PL
657 }
658}
659
4f1688b2
JPM
660/* tipc_link_cong: determine return value and how to treat the
661 * sent buffer during link congestion.
662 * - For plain, errorless user data messages we keep the buffer and
663 * return -ELINKONG.
664 * - For all other messages we discard the buffer and return -EHOSTUNREACH
665 * - For TIPC internal messages we also reset the link
666 */
a6ca1094 667static int tipc_link_cong(struct tipc_link *link, struct sk_buff_head *list)
4f1688b2 668{
a6ca1094
YX
669 struct sk_buff *skb = skb_peek(list);
670 struct tipc_msg *msg = buf_msg(skb);
4f1688b2
JPM
671 uint imp = tipc_msg_tot_importance(msg);
672 u32 oport = msg_tot_origport(msg);
673
50100a5e 674 if (unlikely(imp > TIPC_CRITICAL_IMPORTANCE)) {
4f1688b2
JPM
675 pr_warn("%s<%s>, send queue full", link_rst_msg, link->name);
676 tipc_link_reset(link);
50100a5e 677 goto drop;
4f1688b2 678 }
50100a5e
JPM
679 if (unlikely(msg_errcode(msg)))
680 goto drop;
681 if (unlikely(msg_reroute_cnt(msg)))
682 goto drop;
a6ca1094 683 if (TIPC_SKB_CB(skb)->wakeup_pending)
50100a5e 684 return -ELINKCONG;
a6ca1094 685 if (link_schedule_user(link, oport, skb_queue_len(list), imp))
50100a5e
JPM
686 return -ELINKCONG;
687drop:
a6ca1094 688 __skb_queue_purge(list);
4f1688b2
JPM
689 return -EHOSTUNREACH;
690}
691
692/**
9fbfb8b1 693 * __tipc_link_xmit(): same as tipc_link_xmit, but destlink is known & locked
4f1688b2 694 * @link: link to use
a6ca1094
YX
695 * @list: chain of buffers containing message
696 *
4f1688b2
JPM
697 * Consumes the buffer chain, except when returning -ELINKCONG
698 * Returns 0 if success, otherwise errno: -ELINKCONG, -EMSGSIZE (plain socket
699 * user data messages) or -EHOSTUNREACH (all other messages/senders)
700 * Only the socket functions tipc_send_stream() and tipc_send_packet() need
701 * to act on the return value, since they may need to do more send attempts.
702 */
a6ca1094 703int __tipc_link_xmit(struct tipc_link *link, struct sk_buff_head *list)
4f1688b2 704{
a6ca1094 705 struct tipc_msg *msg = buf_msg(skb_peek(list));
4f1688b2 706 uint psz = msg_size(msg);
4f1688b2
JPM
707 uint sndlim = link->queue_limit[0];
708 uint imp = tipc_msg_tot_importance(msg);
709 uint mtu = link->max_pkt;
710 uint ack = mod(link->next_in_no - 1);
711 uint seqno = link->next_out_no;
712 uint bc_last_in = link->owner->bclink.last_in;
713 struct tipc_media_addr *addr = &link->media_addr;
58dc55f2 714 struct sk_buff_head *outqueue = &link->outqueue;
a6ca1094 715 struct sk_buff *skb, *tmp;
4f1688b2
JPM
716
717 /* Match queue limits against msg importance: */
58dc55f2 718 if (unlikely(skb_queue_len(outqueue) >= link->queue_limit[imp]))
a6ca1094 719 return tipc_link_cong(link, list);
4f1688b2
JPM
720
721 /* Has valid packet limit been used ? */
722 if (unlikely(psz > mtu)) {
a6ca1094 723 __skb_queue_purge(list);
4f1688b2
JPM
724 return -EMSGSIZE;
725 }
726
727 /* Prepare each packet for sending, and add to outqueue: */
a6ca1094
YX
728 skb_queue_walk_safe(list, skb, tmp) {
729 __skb_unlink(skb, list);
58dc55f2 730 msg = buf_msg(skb);
4f1688b2
JPM
731 msg_set_word(msg, 2, ((ack << 16) | mod(seqno)));
732 msg_set_bcast_ack(msg, bc_last_in);
733
58dc55f2
YX
734 if (skb_queue_len(outqueue) < sndlim) {
735 __skb_queue_tail(outqueue, skb);
736 tipc_bearer_send(link->bearer_id, skb, addr);
737 link->next_out = NULL;
738 link->unacked_window = 0;
739 } else if (tipc_msg_bundle(outqueue, skb, mtu)) {
4f1688b2 740 link->stats.sent_bundled++;
4f1688b2 741 continue;
58dc55f2
YX
742 } else if (tipc_msg_make_bundle(outqueue, skb, mtu,
743 link->addr)) {
4f1688b2
JPM
744 link->stats.sent_bundled++;
745 link->stats.sent_bundles++;
4f1688b2 746 if (!link->next_out)
58dc55f2 747 link->next_out = skb_peek_tail(outqueue);
4f1688b2 748 } else {
58dc55f2 749 __skb_queue_tail(outqueue, skb);
4f1688b2 750 if (!link->next_out)
58dc55f2 751 link->next_out = skb;
4f1688b2
JPM
752 }
753 seqno++;
4f1688b2
JPM
754 }
755 link->next_out_no = seqno;
4f1688b2
JPM
756 return 0;
757}
758
a6ca1094
YX
759static void skb2list(struct sk_buff *skb, struct sk_buff_head *list)
760{
761 __skb_queue_head_init(list);
762 __skb_queue_tail(list, skb);
763}
764
765static int __tipc_link_xmit_skb(struct tipc_link *link, struct sk_buff *skb)
766{
767 struct sk_buff_head head;
768
769 skb2list(skb, &head);
770 return __tipc_link_xmit(link, &head);
771}
772
773int tipc_link_xmit_skb(struct sk_buff *skb, u32 dnode, u32 selector)
774{
775 struct sk_buff_head head;
776
777 skb2list(skb, &head);
778 return tipc_link_xmit(&head, dnode, selector);
779}
780
4f1688b2 781/**
9fbfb8b1 782 * tipc_link_xmit() is the general link level function for message sending
a6ca1094 783 * @list: chain of buffers containing message
4f1688b2
JPM
784 * @dsz: amount of user data to be sent
785 * @dnode: address of destination node
786 * @selector: a number used for deterministic link selection
787 * Consumes the buffer chain, except when returning -ELINKCONG
788 * Returns 0 if success, otherwise errno: -ELINKCONG,-EHOSTUNREACH,-EMSGSIZE
789 */
a6ca1094 790int tipc_link_xmit(struct sk_buff_head *list, u32 dnode, u32 selector)
4f1688b2
JPM
791{
792 struct tipc_link *link = NULL;
793 struct tipc_node *node;
794 int rc = -EHOSTUNREACH;
795
796 node = tipc_node_find(dnode);
797 if (node) {
798 tipc_node_lock(node);
799 link = node->active_links[selector & 1];
800 if (link)
a6ca1094 801 rc = __tipc_link_xmit(link, list);
4f1688b2
JPM
802 tipc_node_unlock(node);
803 }
804
805 if (link)
806 return rc;
807
a6ca1094
YX
808 if (likely(in_own_node(dnode))) {
809 /* As a node local message chain never contains more than one
810 * buffer, we just need to dequeue one SKB buffer from the
811 * head list.
812 */
813 return tipc_sk_rcv(__skb_dequeue(list));
814 }
815 __skb_queue_purge(list);
4f1688b2 816
4f1688b2
JPM
817 return rc;
818}
819
c64f7a6a 820/*
247f0f3c 821 * tipc_link_sync_xmit - synchronize broadcast link endpoints.
c64f7a6a
JM
822 *
823 * Give a newly added peer node the sequence number where it should
824 * start receiving and acking broadcast packets.
825 *
826 * Called with node locked
827 */
25b660c7 828static void tipc_link_sync_xmit(struct tipc_link *link)
c64f7a6a 829{
a6ca1094 830 struct sk_buff *skb;
c64f7a6a
JM
831 struct tipc_msg *msg;
832
a6ca1094
YX
833 skb = tipc_buf_acquire(INT_H_SIZE);
834 if (!skb)
c64f7a6a
JM
835 return;
836
a6ca1094 837 msg = buf_msg(skb);
25b660c7
JPM
838 tipc_msg_init(msg, BCAST_PROTOCOL, STATE_MSG, INT_H_SIZE, link->addr);
839 msg_set_last_bcast(msg, link->owner->bclink.acked);
a6ca1094 840 __tipc_link_xmit_skb(link, skb);
c64f7a6a
JM
841}
842
843/*
247f0f3c 844 * tipc_link_sync_rcv - synchronize broadcast link endpoints.
c64f7a6a
JM
845 * Receive the sequence number where we should start receiving and
846 * acking broadcast packets from a newly added peer node, and open
847 * up for reception of such packets.
848 *
849 * Called with node locked
850 */
247f0f3c 851static void tipc_link_sync_rcv(struct tipc_node *n, struct sk_buff *buf)
c64f7a6a
JM
852{
853 struct tipc_msg *msg = buf_msg(buf);
854
855 n->bclink.last_sent = n->bclink.last_in = msg_last_bcast(msg);
856 n->bclink.recv_permitted = true;
857 kfree_skb(buf);
858}
859
58dc55f2
YX
860struct sk_buff *tipc_skb_queue_next(const struct sk_buff_head *list,
861 const struct sk_buff *skb)
862{
863 if (skb_queue_is_last(list, skb))
864 return NULL;
865 return skb->next;
866}
867
c4307285 868/*
47b4c9a8
YX
869 * tipc_link_push_packets - push unsent packets to bearer
870 *
871 * Push out the unsent messages of a link where congestion
872 * has abated. Node is locked.
873 *
874 * Called with node locked
b97bf3fd 875 */
47b4c9a8 876void tipc_link_push_packets(struct tipc_link *l_ptr)
b97bf3fd 877{
58dc55f2
YX
878 struct sk_buff_head *outqueue = &l_ptr->outqueue;
879 struct sk_buff *skb = l_ptr->next_out;
47b4c9a8
YX
880 struct tipc_msg *msg;
881 u32 next, first;
b97bf3fd 882
58dc55f2 883 skb_queue_walk_from(outqueue, skb) {
47b4c9a8
YX
884 msg = buf_msg(skb);
885 next = msg_seqno(msg);
58dc55f2 886 first = buf_seqno(skb_peek(outqueue));
b97bf3fd
PL
887
888 if (mod(next - first) < l_ptr->queue_limit[0]) {
889 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
c4307285 890 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
3c294cb3 891 if (msg_user(msg) == MSG_BUNDLER)
58311d16 892 TIPC_SKB_CB(skb)->bundling = false;
47b4c9a8
YX
893 tipc_bearer_send(l_ptr->bearer_id, skb,
894 &l_ptr->media_addr);
58dc55f2 895 l_ptr->next_out = tipc_skb_queue_next(outqueue, skb);
47b4c9a8
YX
896 } else {
897 break;
b97bf3fd
PL
898 }
899 }
b97bf3fd
PL
900}
901
3f5a12bd 902void tipc_link_reset_all(struct tipc_node *node)
d356eeba 903{
d356eeba
AS
904 char addr_string[16];
905 u32 i;
906
3f5a12bd 907 tipc_node_lock(node);
d356eeba 908
2cf8aa19 909 pr_warn("Resetting all links to %s\n",
3f5a12bd 910 tipc_addr_string_fill(addr_string, node->addr));
d356eeba
AS
911
912 for (i = 0; i < MAX_BEARERS; i++) {
3f5a12bd
YX
913 if (node->links[i]) {
914 link_print(node->links[i], "Resetting link\n");
915 tipc_link_reset(node->links[i]);
d356eeba
AS
916 }
917 }
918
3f5a12bd 919 tipc_node_unlock(node);
d356eeba
AS
920}
921
a18c4bc3 922static void link_retransmit_failure(struct tipc_link *l_ptr,
ae8509c4 923 struct sk_buff *buf)
d356eeba
AS
924{
925 struct tipc_msg *msg = buf_msg(buf);
926
2cf8aa19 927 pr_warn("Retransmission failure on link <%s>\n", l_ptr->name);
d356eeba
AS
928
929 if (l_ptr->addr) {
d356eeba 930 /* Handle failure on standard link */
8d64a5ba 931 link_print(l_ptr, "Resetting link\n");
d356eeba
AS
932 tipc_link_reset(l_ptr);
933
934 } else {
d356eeba 935 /* Handle failure on broadcast link */
6c00055a 936 struct tipc_node *n_ptr;
d356eeba
AS
937 char addr_string[16];
938
2cf8aa19
EH
939 pr_info("Msg seq number: %u, ", msg_seqno(msg));
940 pr_cont("Outstanding acks: %lu\n",
941 (unsigned long) TIPC_SKB_CB(buf)->handle);
617dbeaa 942
01d83edd 943 n_ptr = tipc_bclink_retransmit_to();
d356eeba
AS
944 tipc_node_lock(n_ptr);
945
c68ca7b7 946 tipc_addr_string_fill(addr_string, n_ptr->addr);
2cf8aa19 947 pr_info("Broadcast link info for %s\n", addr_string);
389dd9bc
YX
948 pr_info("Reception permitted: %d, Acked: %u\n",
949 n_ptr->bclink.recv_permitted,
2cf8aa19
EH
950 n_ptr->bclink.acked);
951 pr_info("Last in: %u, Oos state: %u, Last sent: %u\n",
952 n_ptr->bclink.last_in,
953 n_ptr->bclink.oos_state,
954 n_ptr->bclink.last_sent);
d356eeba 955
d356eeba
AS
956 tipc_node_unlock(n_ptr);
957
3f5a12bd 958 tipc_bclink_set_flags(TIPC_BCLINK_RESET);
d356eeba
AS
959 l_ptr->stale_count = 0;
960 }
961}
962
58dc55f2 963void tipc_link_retransmit(struct tipc_link *l_ptr, struct sk_buff *skb,
4323add6 964 u32 retransmits)
b97bf3fd
PL
965{
966 struct tipc_msg *msg;
967
58dc55f2 968 if (!skb)
d356eeba
AS
969 return;
970
58dc55f2 971 msg = buf_msg(skb);
c4307285 972
512137ee
EH
973 /* Detect repeated retransmit failures */
974 if (l_ptr->last_retransmitted == msg_seqno(msg)) {
975 if (++l_ptr->stale_count > 100) {
58dc55f2 976 link_retransmit_failure(l_ptr, skb);
512137ee 977 return;
d356eeba
AS
978 }
979 } else {
512137ee
EH
980 l_ptr->last_retransmitted = msg_seqno(msg);
981 l_ptr->stale_count = 1;
b97bf3fd 982 }
d356eeba 983
58dc55f2
YX
984 skb_queue_walk_from(&l_ptr->outqueue, skb) {
985 if (!retransmits || skb == l_ptr->next_out)
986 break;
987 msg = buf_msg(skb);
b97bf3fd 988 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
c4307285 989 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
58dc55f2 990 tipc_bearer_send(l_ptr->bearer_id, skb, &l_ptr->media_addr);
3c294cb3
YX
991 retransmits--;
992 l_ptr->stats.retransmitted++;
b97bf3fd 993 }
b97bf3fd
PL
994}
995
f03273f1
YX
996static void link_retrieve_defq(struct tipc_link *link,
997 struct sk_buff_head *list)
b97bf3fd
PL
998{
999 u32 seq_no;
1000
f03273f1
YX
1001 if (skb_queue_empty(&link->deferred_queue))
1002 return;
1003
1004 seq_no = buf_seqno(skb_peek(&link->deferred_queue));
1005 if (seq_no == mod(link->next_in_no))
1006 skb_queue_splice_tail_init(&link->deferred_queue, list);
b97bf3fd
PL
1007}
1008
85035568
AS
1009/**
1010 * link_recv_buf_validate - validate basic format of received message
1011 *
1012 * This routine ensures a TIPC message has an acceptable header, and at least
1013 * as much data as the header indicates it should. The routine also ensures
1014 * that the entire message header is stored in the main fragment of the message
1015 * buffer, to simplify future access to message header fields.
1016 *
1017 * Note: Having extra info present in the message header or data areas is OK.
1018 * TIPC will ignore the excess, under the assumption that it is optional info
1019 * introduced by a later release of the protocol.
1020 */
85035568
AS
1021static int link_recv_buf_validate(struct sk_buff *buf)
1022{
1023 static u32 min_data_hdr_size[8] = {
741d9eb7 1024 SHORT_H_SIZE, MCAST_H_SIZE, NAMED_H_SIZE, BASIC_H_SIZE,
85035568
AS
1025 MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE
1026 };
1027
1028 struct tipc_msg *msg;
1029 u32 tipc_hdr[2];
1030 u32 size;
1031 u32 hdr_size;
1032 u32 min_hdr_size;
1033
64380a04
EH
1034 /* If this packet comes from the defer queue, the skb has already
1035 * been validated
1036 */
1037 if (unlikely(TIPC_SKB_CB(buf)->deferred))
1038 return 1;
1039
85035568
AS
1040 if (unlikely(buf->len < MIN_H_SIZE))
1041 return 0;
1042
1043 msg = skb_header_pointer(buf, 0, sizeof(tipc_hdr), tipc_hdr);
1044 if (msg == NULL)
1045 return 0;
1046
1047 if (unlikely(msg_version(msg) != TIPC_VERSION))
1048 return 0;
1049
1050 size = msg_size(msg);
1051 hdr_size = msg_hdr_sz(msg);
1052 min_hdr_size = msg_isdata(msg) ?
1053 min_data_hdr_size[msg_type(msg)] : INT_H_SIZE;
1054
1055 if (unlikely((hdr_size < min_hdr_size) ||
1056 (size < hdr_size) ||
1057 (buf->len < size) ||
1058 (size - hdr_size > TIPC_MAX_USER_MSG_SIZE)))
1059 return 0;
1060
1061 return pskb_may_pull(buf, hdr_size);
1062}
1063
b02b69c8 1064/**
170b3927 1065 * tipc_rcv - process TIPC packets/messages arriving from off-node
f03273f1 1066 * @skb: TIPC packet
7a2f7d18 1067 * @b_ptr: pointer to bearer message arrived on
b02b69c8
AS
1068 *
1069 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1070 * structure (i.e. cannot be NULL), but bearer can be inactive.
1071 */
f03273f1 1072void tipc_rcv(struct sk_buff *skb, struct tipc_bearer *b_ptr)
b97bf3fd 1073{
f03273f1
YX
1074 struct sk_buff_head head;
1075 struct tipc_node *n_ptr;
1076 struct tipc_link *l_ptr;
1077 struct sk_buff *skb1, *tmp;
1078 struct tipc_msg *msg;
1079 u32 seq_no;
1080 u32 ackd;
1081 u32 released;
b97bf3fd 1082
a6ca1094 1083 skb2list(skb, &head);
85035568 1084
f03273f1 1085 while ((skb = __skb_dequeue(&head))) {
85035568 1086 /* Ensure message is well-formed */
f03273f1 1087 if (unlikely(!link_recv_buf_validate(skb)))
3af390e2 1088 goto discard;
b97bf3fd 1089
fe13dda2 1090 /* Ensure message data is a single contiguous unit */
f03273f1 1091 if (unlikely(skb_linearize(skb)))
3af390e2 1092 goto discard;
fe13dda2 1093
85035568 1094 /* Handle arrival of a non-unicast link message */
f03273f1 1095 msg = buf_msg(skb);
85035568 1096
b97bf3fd 1097 if (unlikely(msg_non_seq(msg))) {
1265a021 1098 if (msg_user(msg) == LINK_CONFIG)
f03273f1 1099 tipc_disc_rcv(skb, b_ptr);
1265a021 1100 else
f03273f1 1101 tipc_bclink_rcv(skb);
b97bf3fd
PL
1102 continue;
1103 }
c4307285 1104
ed33a9c4 1105 /* Discard unicast link messages destined for another node */
26008247
AS
1106 if (unlikely(!msg_short(msg) &&
1107 (msg_destnode(msg) != tipc_own_addr)))
3af390e2 1108 goto discard;
c4307285 1109
5a68d5ee 1110 /* Locate neighboring node that sent message */
4323add6 1111 n_ptr = tipc_node_find(msg_prevnode(msg));
b97bf3fd 1112 if (unlikely(!n_ptr))
3af390e2 1113 goto discard;
4323add6 1114 tipc_node_lock(n_ptr);
85035568 1115
b4b56102 1116 /* Locate unicast link endpoint that should handle message */
b4b56102 1117 l_ptr = n_ptr->links[b_ptr->identity];
3af390e2
YX
1118 if (unlikely(!l_ptr))
1119 goto unlock_discard;
5a68d5ee 1120
b4b56102 1121 /* Verify that communication with node is currently allowed */
aecb9bb8 1122 if ((n_ptr->action_flags & TIPC_WAIT_PEER_LINKS_DOWN) &&
10f465c4
YX
1123 msg_user(msg) == LINK_PROTOCOL &&
1124 (msg_type(msg) == RESET_MSG ||
1125 msg_type(msg) == ACTIVATE_MSG) &&
1126 !msg_redundant_link(msg))
aecb9bb8 1127 n_ptr->action_flags &= ~TIPC_WAIT_PEER_LINKS_DOWN;
10f465c4
YX
1128
1129 if (tipc_node_blocked(n_ptr))
3af390e2 1130 goto unlock_discard;
85035568
AS
1131
1132 /* Validate message sequence number info */
85035568
AS
1133 seq_no = msg_seqno(msg);
1134 ackd = msg_ack(msg);
1135
1136 /* Release acked messages */
389dd9bc 1137 if (n_ptr->bclink.recv_permitted)
36559591 1138 tipc_bclink_acknowledge(n_ptr, msg_bcast_ack(msg));
b97bf3fd 1139
58dc55f2
YX
1140 released = 0;
1141 skb_queue_walk_safe(&l_ptr->outqueue, skb1, tmp) {
1142 if (skb1 == l_ptr->next_out ||
1143 more(buf_seqno(skb1), ackd))
1144 break;
1145 __skb_unlink(skb1, &l_ptr->outqueue);
1146 kfree_skb(skb1);
1147 released = 1;
b97bf3fd 1148 }
85035568
AS
1149
1150 /* Try sending any messages link endpoint has pending */
b97bf3fd 1151 if (unlikely(l_ptr->next_out))
47b4c9a8 1152 tipc_link_push_packets(l_ptr);
a5377831 1153
50100a5e
JPM
1154 if (released && !skb_queue_empty(&l_ptr->waiting_sks)) {
1155 link_prepare_wakeup(l_ptr);
1156 l_ptr->owner->action_flags |= TIPC_WAKEUP_USERS;
1157 }
a5377831 1158
a5377831 1159 /* Process the incoming packet */
3af390e2
YX
1160 if (unlikely(!link_working_working(l_ptr))) {
1161 if (msg_user(msg) == LINK_PROTOCOL) {
f03273f1
YX
1162 tipc_link_proto_rcv(l_ptr, skb);
1163 link_retrieve_defq(l_ptr, &head);
4323add6 1164 tipc_node_unlock(n_ptr);
b97bf3fd
PL
1165 continue;
1166 }
3af390e2
YX
1167
1168 /* Traffic message. Conditionally activate link */
1169 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1170
1171 if (link_working_working(l_ptr)) {
1172 /* Re-insert buffer in front of queue */
f03273f1 1173 __skb_queue_head(&head, skb);
3af390e2
YX
1174 tipc_node_unlock(n_ptr);
1175 continue;
1176 }
1177 goto unlock_discard;
1178 }
1179
1180 /* Link is now in state WORKING_WORKING */
1181 if (unlikely(seq_no != mod(l_ptr->next_in_no))) {
f03273f1
YX
1182 link_handle_out_of_seq_msg(l_ptr, skb);
1183 link_retrieve_defq(l_ptr, &head);
4323add6 1184 tipc_node_unlock(n_ptr);
b97bf3fd
PL
1185 continue;
1186 }
3af390e2 1187 l_ptr->next_in_no++;
bc6fecd4 1188 if (unlikely(!skb_queue_empty(&l_ptr->deferred_queue)))
f03273f1 1189 link_retrieve_defq(l_ptr, &head);
a5377831 1190
3f53bd8f
EH
1191 if (unlikely(++l_ptr->unacked_window >= TIPC_MIN_LINK_WIN)) {
1192 l_ptr->stats.sent_acks++;
1193 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
1194 }
1195
f03273f1 1196 if (tipc_link_prepare_input(l_ptr, &skb)) {
3af390e2 1197 tipc_node_unlock(n_ptr);
3af390e2 1198 continue;
b97bf3fd 1199 }
4323add6 1200 tipc_node_unlock(n_ptr);
f03273f1
YX
1201
1202 if (tipc_link_input(l_ptr, skb) != 0)
7ae934be 1203 goto discard;
3af390e2
YX
1204 continue;
1205unlock_discard:
3af390e2
YX
1206 tipc_node_unlock(n_ptr);
1207discard:
f03273f1 1208 kfree_skb(skb);
b97bf3fd 1209 }
b97bf3fd
PL
1210}
1211
7ae934be
EH
1212/**
1213 * tipc_link_prepare_input - process TIPC link messages
1214 *
1215 * returns nonzero if the message was consumed
1216 *
1217 * Node lock must be held
1218 */
1219static int tipc_link_prepare_input(struct tipc_link *l, struct sk_buff **buf)
1220{
1221 struct tipc_node *n;
1222 struct tipc_msg *msg;
1223 int res = -EINVAL;
1224
1225 n = l->owner;
1226 msg = buf_msg(*buf);
1227 switch (msg_user(msg)) {
1228 case CHANGEOVER_PROTOCOL:
1229 if (tipc_link_tunnel_rcv(n, buf))
1230 res = 0;
1231 break;
1232 case MSG_FRAGMENTER:
1233 l->stats.recv_fragments++;
1234 if (tipc_buf_append(&l->reasm_buf, buf)) {
1235 l->stats.recv_fragmented++;
1236 res = 0;
1237 } else if (!l->reasm_buf) {
1238 tipc_link_reset(l);
1239 }
1240 break;
1241 case MSG_BUNDLER:
1242 l->stats.recv_bundles++;
1243 l->stats.recv_bundled += msg_msgcnt(msg);
1244 res = 0;
1245 break;
1246 case NAME_DISTRIBUTOR:
1247 n->bclink.recv_permitted = true;
1248 res = 0;
1249 break;
1250 case BCAST_PROTOCOL:
1251 tipc_link_sync_rcv(n, *buf);
1252 break;
1253 default:
1254 res = 0;
1255 }
1256 return res;
1257}
1258/**
1259 * tipc_link_input - Deliver message too higher layers
1260 */
1261static int tipc_link_input(struct tipc_link *l, struct sk_buff *buf)
1262{
1263 struct tipc_msg *msg = buf_msg(buf);
1264 int res = 0;
1265
1266 switch (msg_user(msg)) {
1267 case TIPC_LOW_IMPORTANCE:
1268 case TIPC_MEDIUM_IMPORTANCE:
1269 case TIPC_HIGH_IMPORTANCE:
1270 case TIPC_CRITICAL_IMPORTANCE:
1271 case CONN_MANAGER:
1272 tipc_sk_rcv(buf);
1273 break;
1274 case NAME_DISTRIBUTOR:
1275 tipc_named_rcv(buf);
1276 break;
1277 case MSG_BUNDLER:
1278 tipc_link_bundle_rcv(buf);
1279 break;
1280 default:
1281 res = -EINVAL;
1282 }
1283 return res;
1284}
1285
2c53040f 1286/**
8809b255
AS
1287 * tipc_link_defer_pkt - Add out-of-sequence message to deferred reception queue
1288 *
1289 * Returns increase in queue length (i.e. 0 or 1)
b97bf3fd 1290 */
bc6fecd4 1291u32 tipc_link_defer_pkt(struct sk_buff_head *list, struct sk_buff *skb)
b97bf3fd 1292{
bc6fecd4
YX
1293 struct sk_buff *skb1;
1294 u32 seq_no = buf_seqno(skb);
b97bf3fd
PL
1295
1296 /* Empty queue ? */
bc6fecd4
YX
1297 if (skb_queue_empty(list)) {
1298 __skb_queue_tail(list, skb);
b97bf3fd
PL
1299 return 1;
1300 }
1301
1302 /* Last ? */
bc6fecd4
YX
1303 if (less(buf_seqno(skb_peek_tail(list)), seq_no)) {
1304 __skb_queue_tail(list, skb);
b97bf3fd
PL
1305 return 1;
1306 }
1307
8809b255 1308 /* Locate insertion point in queue, then insert; discard if duplicate */
bc6fecd4
YX
1309 skb_queue_walk(list, skb1) {
1310 u32 curr_seqno = buf_seqno(skb1);
b97bf3fd 1311
8809b255 1312 if (seq_no == curr_seqno) {
bc6fecd4 1313 kfree_skb(skb);
8809b255 1314 return 0;
b97bf3fd 1315 }
8809b255
AS
1316
1317 if (less(seq_no, curr_seqno))
b97bf3fd 1318 break;
8809b255 1319 }
b97bf3fd 1320
bc6fecd4 1321 __skb_queue_before(list, skb1, skb);
8809b255 1322 return 1;
b97bf3fd
PL
1323}
1324
8809b255 1325/*
b97bf3fd
PL
1326 * link_handle_out_of_seq_msg - handle arrival of out-of-sequence packet
1327 */
a18c4bc3 1328static void link_handle_out_of_seq_msg(struct tipc_link *l_ptr,
b97bf3fd
PL
1329 struct sk_buff *buf)
1330{
f905730c 1331 u32 seq_no = buf_seqno(buf);
b97bf3fd
PL
1332
1333 if (likely(msg_user(buf_msg(buf)) == LINK_PROTOCOL)) {
247f0f3c 1334 tipc_link_proto_rcv(l_ptr, buf);
b97bf3fd
PL
1335 return;
1336 }
1337
b97bf3fd 1338 /* Record OOS packet arrival (force mismatch on next timeout) */
b97bf3fd
PL
1339 l_ptr->checkpoint--;
1340
c4307285 1341 /*
b97bf3fd
PL
1342 * Discard packet if a duplicate; otherwise add it to deferred queue
1343 * and notify peer of gap as per protocol specification
1344 */
b97bf3fd
PL
1345 if (less(seq_no, mod(l_ptr->next_in_no))) {
1346 l_ptr->stats.duplicates++;
5f6d9123 1347 kfree_skb(buf);
b97bf3fd
PL
1348 return;
1349 }
1350
bc6fecd4 1351 if (tipc_link_defer_pkt(&l_ptr->deferred_queue, buf)) {
b97bf3fd 1352 l_ptr->stats.deferred_recv++;
64380a04 1353 TIPC_SKB_CB(buf)->deferred = true;
bc6fecd4 1354 if ((skb_queue_len(&l_ptr->deferred_queue) % 16) == 1)
247f0f3c 1355 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
bc6fecd4 1356 } else {
b97bf3fd 1357 l_ptr->stats.duplicates++;
bc6fecd4 1358 }
b97bf3fd
PL
1359}
1360
1361/*
1362 * Send protocol message to the other endpoint.
1363 */
247f0f3c
YX
1364void tipc_link_proto_xmit(struct tipc_link *l_ptr, u32 msg_typ, int probe_msg,
1365 u32 gap, u32 tolerance, u32 priority, u32 ack_mtu)
b97bf3fd 1366{
1fc54d8f 1367 struct sk_buff *buf = NULL;
b97bf3fd 1368 struct tipc_msg *msg = l_ptr->pmsg;
c4307285 1369 u32 msg_size = sizeof(l_ptr->proto_msg);
75f0aa49 1370 int r_flag;
b97bf3fd 1371
77a7e07a
YX
1372 /* Don't send protocol message during link changeover */
1373 if (l_ptr->exp_msg_count)
b97bf3fd 1374 return;
b4b56102
AS
1375
1376 /* Abort non-RESET send if communication with node is prohibited */
10f465c4 1377 if ((tipc_node_blocked(l_ptr->owner)) && (msg_typ != RESET_MSG))
b4b56102
AS
1378 return;
1379
92d2c905 1380 /* Create protocol message with "out-of-sequence" sequence number */
b97bf3fd 1381 msg_set_type(msg, msg_typ);
7a2f7d18 1382 msg_set_net_plane(msg, l_ptr->net_plane);
7a54d4a9 1383 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
4323add6 1384 msg_set_last_bcast(msg, tipc_bclink_get_last_sent());
b97bf3fd
PL
1385
1386 if (msg_typ == STATE_MSG) {
1387 u32 next_sent = mod(l_ptr->next_out_no);
1388
4323add6 1389 if (!tipc_link_is_up(l_ptr))
b97bf3fd
PL
1390 return;
1391 if (l_ptr->next_out)
f905730c 1392 next_sent = buf_seqno(l_ptr->next_out);
b97bf3fd 1393 msg_set_next_sent(msg, next_sent);
bc6fecd4
YX
1394 if (!skb_queue_empty(&l_ptr->deferred_queue)) {
1395 u32 rec = buf_seqno(skb_peek(&l_ptr->deferred_queue));
b97bf3fd
PL
1396 gap = mod(rec - mod(l_ptr->next_in_no));
1397 }
1398 msg_set_seq_gap(msg, gap);
1399 if (gap)
1400 l_ptr->stats.sent_nacks++;
1401 msg_set_link_tolerance(msg, tolerance);
1402 msg_set_linkprio(msg, priority);
1403 msg_set_max_pkt(msg, ack_mtu);
1404 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
1405 msg_set_probe(msg, probe_msg != 0);
c4307285 1406 if (probe_msg) {
b97bf3fd
PL
1407 u32 mtu = l_ptr->max_pkt;
1408
c4307285 1409 if ((mtu < l_ptr->max_pkt_target) &&
b97bf3fd
PL
1410 link_working_working(l_ptr) &&
1411 l_ptr->fsm_msg_cnt) {
1412 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
c4307285
YH
1413 if (l_ptr->max_pkt_probes == 10) {
1414 l_ptr->max_pkt_target = (msg_size - 4);
1415 l_ptr->max_pkt_probes = 0;
b97bf3fd 1416 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
c4307285 1417 }
b97bf3fd 1418 l_ptr->max_pkt_probes++;
c4307285 1419 }
b97bf3fd
PL
1420
1421 l_ptr->stats.sent_probes++;
c4307285 1422 }
b97bf3fd
PL
1423 l_ptr->stats.sent_states++;
1424 } else { /* RESET_MSG or ACTIVATE_MSG */
1425 msg_set_ack(msg, mod(l_ptr->reset_checkpoint - 1));
1426 msg_set_seq_gap(msg, 0);
1427 msg_set_next_sent(msg, 1);
f23d9bf2 1428 msg_set_probe(msg, 0);
b97bf3fd
PL
1429 msg_set_link_tolerance(msg, l_ptr->tolerance);
1430 msg_set_linkprio(msg, l_ptr->priority);
1431 msg_set_max_pkt(msg, l_ptr->max_pkt_target);
1432 }
1433
75f0aa49
AS
1434 r_flag = (l_ptr->owner->working_links > tipc_link_is_up(l_ptr));
1435 msg_set_redundant_link(msg, r_flag);
b97bf3fd 1436 msg_set_linkprio(msg, l_ptr->priority);
92d2c905 1437 msg_set_size(msg, msg_size);
b97bf3fd
PL
1438
1439 msg_set_seqno(msg, mod(l_ptr->next_out_no + (0xffff/2)));
1440
31e3c3f6 1441 buf = tipc_buf_acquire(msg_size);
b97bf3fd
PL
1442 if (!buf)
1443 return;
1444
27d7ff46 1445 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
796c75d0 1446 buf->priority = TC_PRIO_CONTROL;
b97bf3fd 1447
7a2f7d18 1448 tipc_bearer_send(l_ptr->bearer_id, buf, &l_ptr->media_addr);
92d2c905 1449 l_ptr->unacked_window = 0;
5f6d9123 1450 kfree_skb(buf);
b97bf3fd
PL
1451}
1452
1453/*
1454 * Receive protocol message :
c4307285
YH
1455 * Note that network plane id propagates through the network, and may
1456 * change at any time. The node with lowest address rules
b97bf3fd 1457 */
247f0f3c 1458static void tipc_link_proto_rcv(struct tipc_link *l_ptr, struct sk_buff *buf)
b97bf3fd
PL
1459{
1460 u32 rec_gap = 0;
1461 u32 max_pkt_info;
c4307285 1462 u32 max_pkt_ack;
b97bf3fd
PL
1463 u32 msg_tol;
1464 struct tipc_msg *msg = buf_msg(buf);
1465
77a7e07a
YX
1466 /* Discard protocol message during link changeover */
1467 if (l_ptr->exp_msg_count)
b97bf3fd
PL
1468 goto exit;
1469
7a2f7d18 1470 if (l_ptr->net_plane != msg_net_plane(msg))
b97bf3fd 1471 if (tipc_own_addr > msg_prevnode(msg))
7a2f7d18 1472 l_ptr->net_plane = msg_net_plane(msg);
b97bf3fd 1473
b97bf3fd 1474 switch (msg_type(msg)) {
c4307285 1475
b97bf3fd 1476 case RESET_MSG:
a686e685
AS
1477 if (!link_working_unknown(l_ptr) &&
1478 (l_ptr->peer_session != INVALID_SESSION)) {
641c218d
AS
1479 if (less_eq(msg_session(msg), l_ptr->peer_session))
1480 break; /* duplicate or old reset: ignore */
b97bf3fd 1481 }
b4b56102
AS
1482
1483 if (!msg_redundant_link(msg) && (link_working_working(l_ptr) ||
1484 link_working_unknown(l_ptr))) {
1485 /*
1486 * peer has lost contact -- don't allow peer's links
1487 * to reactivate before we recognize loss & clean up
1488 */
ca9cf06a 1489 l_ptr->owner->action_flags |= TIPC_WAIT_OWN_LINKS_DOWN;
b4b56102
AS
1490 }
1491
47361c87
AS
1492 link_state_event(l_ptr, RESET_MSG);
1493
b97bf3fd
PL
1494 /* fall thru' */
1495 case ACTIVATE_MSG:
1496 /* Update link settings according other endpoint's values */
b97bf3fd
PL
1497 strcpy((strrchr(l_ptr->name, ':') + 1), (char *)msg_data(msg));
1498
2db9983a
AS
1499 msg_tol = msg_link_tolerance(msg);
1500 if (msg_tol > l_ptr->tolerance)
b97bf3fd
PL
1501 link_set_supervision_props(l_ptr, msg_tol);
1502
1503 if (msg_linkprio(msg) > l_ptr->priority)
1504 l_ptr->priority = msg_linkprio(msg);
1505
1506 max_pkt_info = msg_max_pkt(msg);
c4307285 1507 if (max_pkt_info) {
b97bf3fd
PL
1508 if (max_pkt_info < l_ptr->max_pkt_target)
1509 l_ptr->max_pkt_target = max_pkt_info;
1510 if (l_ptr->max_pkt > l_ptr->max_pkt_target)
1511 l_ptr->max_pkt = l_ptr->max_pkt_target;
1512 } else {
c4307285 1513 l_ptr->max_pkt = l_ptr->max_pkt_target;
b97bf3fd 1514 }
b97bf3fd 1515
4d75313c 1516 /* Synchronize broadcast link info, if not done previously */
7a54d4a9
AS
1517 if (!tipc_node_is_up(l_ptr->owner)) {
1518 l_ptr->owner->bclink.last_sent =
1519 l_ptr->owner->bclink.last_in =
1520 msg_last_bcast(msg);
1521 l_ptr->owner->bclink.oos_state = 0;
1522 }
4d75313c 1523
b97bf3fd
PL
1524 l_ptr->peer_session = msg_session(msg);
1525 l_ptr->peer_bearer_id = msg_bearer_id(msg);
47361c87
AS
1526
1527 if (msg_type(msg) == ACTIVATE_MSG)
1528 link_state_event(l_ptr, ACTIVATE_MSG);
b97bf3fd
PL
1529 break;
1530 case STATE_MSG:
1531
2db9983a
AS
1532 msg_tol = msg_link_tolerance(msg);
1533 if (msg_tol)
b97bf3fd 1534 link_set_supervision_props(l_ptr, msg_tol);
c4307285
YH
1535
1536 if (msg_linkprio(msg) &&
b97bf3fd 1537 (msg_linkprio(msg) != l_ptr->priority)) {
2cf8aa19
EH
1538 pr_warn("%s<%s>, priority change %u->%u\n",
1539 link_rst_msg, l_ptr->name, l_ptr->priority,
1540 msg_linkprio(msg));
b97bf3fd 1541 l_ptr->priority = msg_linkprio(msg);
4323add6 1542 tipc_link_reset(l_ptr); /* Enforce change to take effect */
b97bf3fd
PL
1543 break;
1544 }
ec37dcd3
JPM
1545
1546 /* Record reception; force mismatch at next timeout: */
1547 l_ptr->checkpoint--;
1548
b97bf3fd
PL
1549 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1550 l_ptr->stats.recv_states++;
1551 if (link_reset_unknown(l_ptr))
1552 break;
1553
1554 if (less_eq(mod(l_ptr->next_in_no), msg_next_sent(msg))) {
c4307285 1555 rec_gap = mod(msg_next_sent(msg) -
b97bf3fd
PL
1556 mod(l_ptr->next_in_no));
1557 }
1558
1559 max_pkt_ack = msg_max_pkt(msg);
c4307285 1560 if (max_pkt_ack > l_ptr->max_pkt) {
c4307285
YH
1561 l_ptr->max_pkt = max_pkt_ack;
1562 l_ptr->max_pkt_probes = 0;
1563 }
b97bf3fd
PL
1564
1565 max_pkt_ack = 0;
c4307285 1566 if (msg_probe(msg)) {
b97bf3fd 1567 l_ptr->stats.recv_probes++;
a016892c 1568 if (msg_size(msg) > sizeof(l_ptr->proto_msg))
c4307285 1569 max_pkt_ack = msg_size(msg);
c4307285 1570 }
b97bf3fd
PL
1571
1572 /* Protocol message before retransmits, reduce loss risk */
389dd9bc 1573 if (l_ptr->owner->bclink.recv_permitted)
7a54d4a9
AS
1574 tipc_bclink_update_link_state(l_ptr->owner,
1575 msg_last_bcast(msg));
b97bf3fd
PL
1576
1577 if (rec_gap || (msg_probe(msg))) {
247f0f3c
YX
1578 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, rec_gap, 0,
1579 0, max_pkt_ack);
b97bf3fd
PL
1580 }
1581 if (msg_seq_gap(msg)) {
b97bf3fd 1582 l_ptr->stats.recv_nacks++;
58dc55f2 1583 tipc_link_retransmit(l_ptr, skb_peek(&l_ptr->outqueue),
4323add6 1584 msg_seq_gap(msg));
b97bf3fd
PL
1585 }
1586 break;
b97bf3fd
PL
1587 }
1588exit:
5f6d9123 1589 kfree_skb(buf);
b97bf3fd
PL
1590}
1591
1592
170b3927
JPM
1593/* tipc_link_tunnel_xmit(): Tunnel one packet via a link belonging to
1594 * a different bearer. Owner node is locked.
b97bf3fd 1595 */
170b3927
JPM
1596static void tipc_link_tunnel_xmit(struct tipc_link *l_ptr,
1597 struct tipc_msg *tunnel_hdr,
1598 struct tipc_msg *msg,
1599 u32 selector)
b97bf3fd 1600{
a18c4bc3 1601 struct tipc_link *tunnel;
a6ca1094 1602 struct sk_buff *skb;
b97bf3fd
PL
1603 u32 length = msg_size(msg);
1604
1605 tunnel = l_ptr->owner->active_links[selector & 1];
5392d646 1606 if (!tipc_link_is_up(tunnel)) {
2cf8aa19 1607 pr_warn("%stunnel link no longer available\n", link_co_err);
b97bf3fd 1608 return;
5392d646 1609 }
b97bf3fd 1610 msg_set_size(tunnel_hdr, length + INT_H_SIZE);
a6ca1094
YX
1611 skb = tipc_buf_acquire(length + INT_H_SIZE);
1612 if (!skb) {
2cf8aa19 1613 pr_warn("%sunable to send tunnel msg\n", link_co_err);
b97bf3fd 1614 return;
5392d646 1615 }
a6ca1094
YX
1616 skb_copy_to_linear_data(skb, tunnel_hdr, INT_H_SIZE);
1617 skb_copy_to_linear_data_offset(skb, INT_H_SIZE, msg, length);
1618 __tipc_link_xmit_skb(tunnel, skb);
b97bf3fd
PL
1619}
1620
1621
170b3927
JPM
1622/* tipc_link_failover_send_queue(): A link has gone down, but a second
1623 * link is still active. We can do failover. Tunnel the failing link's
1624 * whole send queue via the remaining link. This way, we don't lose
1625 * any packets, and sequence order is preserved for subsequent traffic
1626 * sent over the remaining link. Owner node is locked.
b97bf3fd 1627 */
170b3927 1628void tipc_link_failover_send_queue(struct tipc_link *l_ptr)
b97bf3fd 1629{
58dc55f2 1630 u32 msgcount = skb_queue_len(&l_ptr->outqueue);
a18c4bc3 1631 struct tipc_link *tunnel = l_ptr->owner->active_links[0];
b97bf3fd 1632 struct tipc_msg tunnel_hdr;
58dc55f2 1633 struct sk_buff *skb;
5392d646 1634 int split_bundles;
b97bf3fd
PL
1635
1636 if (!tunnel)
1637 return;
1638
c68ca7b7 1639 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
75715217 1640 ORIGINAL_MSG, INT_H_SIZE, l_ptr->addr);
b97bf3fd
PL
1641 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
1642 msg_set_msgcnt(&tunnel_hdr, msgcount);
f131072c 1643
58dc55f2
YX
1644 if (skb_queue_empty(&l_ptr->outqueue)) {
1645 skb = tipc_buf_acquire(INT_H_SIZE);
1646 if (skb) {
1647 skb_copy_to_linear_data(skb, &tunnel_hdr, INT_H_SIZE);
b97bf3fd 1648 msg_set_size(&tunnel_hdr, INT_H_SIZE);
a6ca1094 1649 __tipc_link_xmit_skb(tunnel, skb);
b97bf3fd 1650 } else {
2cf8aa19
EH
1651 pr_warn("%sunable to send changeover msg\n",
1652 link_co_err);
b97bf3fd
PL
1653 }
1654 return;
1655 }
f131072c 1656
c4307285 1657 split_bundles = (l_ptr->owner->active_links[0] !=
5392d646
AS
1658 l_ptr->owner->active_links[1]);
1659
58dc55f2
YX
1660 skb_queue_walk(&l_ptr->outqueue, skb) {
1661 struct tipc_msg *msg = buf_msg(skb);
b97bf3fd
PL
1662
1663 if ((msg_user(msg) == MSG_BUNDLER) && split_bundles) {
b97bf3fd 1664 struct tipc_msg *m = msg_get_wrapped(msg);
0e65967e 1665 unchar *pos = (unchar *)m;
b97bf3fd 1666
d788d805 1667 msgcount = msg_msgcnt(msg);
b97bf3fd 1668 while (msgcount--) {
0e65967e 1669 msg_set_seqno(m, msg_seqno(msg));
170b3927
JPM
1670 tipc_link_tunnel_xmit(l_ptr, &tunnel_hdr, m,
1671 msg_link_selector(m));
b97bf3fd
PL
1672 pos += align(msg_size(m));
1673 m = (struct tipc_msg *)pos;
1674 }
1675 } else {
170b3927
JPM
1676 tipc_link_tunnel_xmit(l_ptr, &tunnel_hdr, msg,
1677 msg_link_selector(msg));
b97bf3fd 1678 }
b97bf3fd
PL
1679 }
1680}
1681
247f0f3c 1682/* tipc_link_dup_queue_xmit(): A second link has become active. Tunnel a
170b3927
JPM
1683 * duplicate of the first link's send queue via the new link. This way, we
1684 * are guaranteed that currently queued packets from a socket are delivered
1685 * before future traffic from the same socket, even if this is using the
1686 * new link. The last arriving copy of each duplicate packet is dropped at
1687 * the receiving end by the regular protocol check, so packet cardinality
1688 * and sequence order is preserved per sender/receiver socket pair.
1689 * Owner node is locked.
1690 */
247f0f3c 1691void tipc_link_dup_queue_xmit(struct tipc_link *l_ptr,
170b3927 1692 struct tipc_link *tunnel)
b97bf3fd 1693{
58dc55f2 1694 struct sk_buff *skb;
b97bf3fd
PL
1695 struct tipc_msg tunnel_hdr;
1696
c68ca7b7 1697 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
75715217 1698 DUPLICATE_MSG, INT_H_SIZE, l_ptr->addr);
58dc55f2 1699 msg_set_msgcnt(&tunnel_hdr, skb_queue_len(&l_ptr->outqueue));
b97bf3fd 1700 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
58dc55f2
YX
1701 skb_queue_walk(&l_ptr->outqueue, skb) {
1702 struct sk_buff *outskb;
1703 struct tipc_msg *msg = buf_msg(skb);
b97bf3fd
PL
1704 u32 length = msg_size(msg);
1705
1706 if (msg_user(msg) == MSG_BUNDLER)
1707 msg_set_type(msg, CLOSED_MSG);
1708 msg_set_ack(msg, mod(l_ptr->next_in_no - 1)); /* Update */
c4307285 1709 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
b97bf3fd 1710 msg_set_size(&tunnel_hdr, length + INT_H_SIZE);
58dc55f2
YX
1711 outskb = tipc_buf_acquire(length + INT_H_SIZE);
1712 if (outskb == NULL) {
2cf8aa19
EH
1713 pr_warn("%sunable to send duplicate msg\n",
1714 link_co_err);
b97bf3fd
PL
1715 return;
1716 }
58dc55f2
YX
1717 skb_copy_to_linear_data(outskb, &tunnel_hdr, INT_H_SIZE);
1718 skb_copy_to_linear_data_offset(outskb, INT_H_SIZE, skb->data,
27d7ff46 1719 length);
a6ca1094 1720 __tipc_link_xmit_skb(tunnel, outskb);
4323add6 1721 if (!tipc_link_is_up(l_ptr))
b97bf3fd 1722 return;
b97bf3fd
PL
1723 }
1724}
1725
b97bf3fd
PL
1726/**
1727 * buf_extract - extracts embedded TIPC message from another message
1728 * @skb: encapsulating message buffer
1729 * @from_pos: offset to extract from
1730 *
c4307285 1731 * Returns a new message buffer containing an embedded message. The
b97bf3fd
PL
1732 * encapsulating message itself is left unchanged.
1733 */
b97bf3fd
PL
1734static struct sk_buff *buf_extract(struct sk_buff *skb, u32 from_pos)
1735{
1736 struct tipc_msg *msg = (struct tipc_msg *)(skb->data + from_pos);
1737 u32 size = msg_size(msg);
1738 struct sk_buff *eb;
1739
31e3c3f6 1740 eb = tipc_buf_acquire(size);
b97bf3fd 1741 if (eb)
27d7ff46 1742 skb_copy_to_linear_data(eb, msg, size);
b97bf3fd
PL
1743 return eb;
1744}
1745
1dab3d5a
JPM
1746
1747
1748/* tipc_link_dup_rcv(): Receive a tunnelled DUPLICATE_MSG packet.
1749 * Owner node is locked.
1750 */
1751static void tipc_link_dup_rcv(struct tipc_link *l_ptr,
1752 struct sk_buff *t_buf)
1753{
1754 struct sk_buff *buf;
1755
1756 if (!tipc_link_is_up(l_ptr))
1757 return;
1758
1759 buf = buf_extract(t_buf, INT_H_SIZE);
1760 if (buf == NULL) {
1761 pr_warn("%sfailed to extract inner dup pkt\n", link_co_err);
1762 return;
1763 }
1764
1765 /* Add buffer to deferred queue, if applicable: */
1766 link_handle_out_of_seq_msg(l_ptr, buf);
1767}
1768
f006c9c7
JPM
1769/* tipc_link_failover_rcv(): Receive a tunnelled ORIGINAL_MSG packet
1770 * Owner node is locked.
1771 */
1772static struct sk_buff *tipc_link_failover_rcv(struct tipc_link *l_ptr,
1773 struct sk_buff *t_buf)
1774{
1775 struct tipc_msg *t_msg = buf_msg(t_buf);
1776 struct sk_buff *buf = NULL;
1777 struct tipc_msg *msg;
1778
1779 if (tipc_link_is_up(l_ptr))
1780 tipc_link_reset(l_ptr);
1781
1782 /* First failover packet? */
1783 if (l_ptr->exp_msg_count == START_CHANGEOVER)
1784 l_ptr->exp_msg_count = msg_msgcnt(t_msg);
1785
1786 /* Should there be an inner packet? */
1787 if (l_ptr->exp_msg_count) {
1788 l_ptr->exp_msg_count--;
1789 buf = buf_extract(t_buf, INT_H_SIZE);
1790 if (buf == NULL) {
1791 pr_warn("%sno inner failover pkt\n", link_co_err);
1792 goto exit;
1793 }
1794 msg = buf_msg(buf);
1795
1796 if (less(msg_seqno(msg), l_ptr->reset_checkpoint)) {
1797 kfree_skb(buf);
1798 buf = NULL;
1799 goto exit;
1800 }
1801 if (msg_user(msg) == MSG_FRAGMENTER) {
1802 l_ptr->stats.recv_fragments++;
37e22164 1803 tipc_buf_append(&l_ptr->reasm_buf, &buf);
f006c9c7
JPM
1804 }
1805 }
f006c9c7 1806exit:
7d33939f
JPM
1807 if ((l_ptr->exp_msg_count == 0) && (l_ptr->flags & LINK_STOPPED)) {
1808 tipc_node_detach_link(l_ptr->owner, l_ptr);
1809 kfree(l_ptr);
1810 }
f006c9c7
JPM
1811 return buf;
1812}
1813
1dab3d5a 1814/* tipc_link_tunnel_rcv(): Receive a tunnelled packet, sent
170b3927
JPM
1815 * via other link as result of a failover (ORIGINAL_MSG) or
1816 * a new active link (DUPLICATE_MSG). Failover packets are
1817 * returned to the active link for delivery upwards.
1818 * Owner node is locked.
b97bf3fd 1819 */
3bb53380 1820static int tipc_link_tunnel_rcv(struct tipc_node *n_ptr,
170b3927 1821 struct sk_buff **buf)
b97bf3fd 1822{
02842f71
JPM
1823 struct sk_buff *t_buf = *buf;
1824 struct tipc_link *l_ptr;
1825 struct tipc_msg *t_msg = buf_msg(t_buf);
1826 u32 bearer_id = msg_bearer_id(t_msg);
b97bf3fd 1827
1e9d47a9
JPM
1828 *buf = NULL;
1829
cb4b102f
DC
1830 if (bearer_id >= MAX_BEARERS)
1831 goto exit;
1dab3d5a 1832
02842f71
JPM
1833 l_ptr = n_ptr->links[bearer_id];
1834 if (!l_ptr)
b97bf3fd 1835 goto exit;
b97bf3fd 1836
02842f71
JPM
1837 if (msg_type(t_msg) == DUPLICATE_MSG)
1838 tipc_link_dup_rcv(l_ptr, t_buf);
1839 else if (msg_type(t_msg) == ORIGINAL_MSG)
1840 *buf = tipc_link_failover_rcv(l_ptr, t_buf);
1e9d47a9
JPM
1841 else
1842 pr_warn("%sunknown tunnel pkt received\n", link_co_err);
b97bf3fd 1843exit:
02842f71 1844 kfree_skb(t_buf);
1e9d47a9 1845 return *buf != NULL;
b97bf3fd
PL
1846}
1847
1848/*
1849 * Bundler functionality:
1850 */
247f0f3c 1851void tipc_link_bundle_rcv(struct sk_buff *buf)
b97bf3fd
PL
1852{
1853 u32 msgcount = msg_msgcnt(buf_msg(buf));
1854 u32 pos = INT_H_SIZE;
1855 struct sk_buff *obuf;
ec8a2e56 1856 struct tipc_msg *omsg;
b97bf3fd 1857
b97bf3fd
PL
1858 while (msgcount--) {
1859 obuf = buf_extract(buf, pos);
1860 if (obuf == NULL) {
2cf8aa19 1861 pr_warn("Link unable to unbundle message(s)\n");
a10bd924 1862 break;
3ff50b79 1863 }
ec8a2e56
JPM
1864 omsg = buf_msg(obuf);
1865 pos += align(msg_size(omsg));
643566d4
JPM
1866 if (msg_isdata(omsg)) {
1867 if (unlikely(msg_type(omsg) == TIPC_MCAST_MSG))
1868 tipc_sk_mcast_rcv(obuf);
1869 else
1870 tipc_sk_rcv(obuf);
1871 } else if (msg_user(omsg) == CONN_MANAGER) {
ec8a2e56
JPM
1872 tipc_sk_rcv(obuf);
1873 } else if (msg_user(omsg) == NAME_DISTRIBUTOR) {
1874 tipc_named_rcv(obuf);
1875 } else {
1876 pr_warn("Illegal bundled msg: %u\n", msg_user(omsg));
1877 kfree_skb(obuf);
1878 }
b97bf3fd 1879 }
5f6d9123 1880 kfree_skb(buf);
b97bf3fd
PL
1881}
1882
a18c4bc3 1883static void link_set_supervision_props(struct tipc_link *l_ptr, u32 tolerance)
b97bf3fd 1884{
5413b4c6
AS
1885 if ((tolerance < TIPC_MIN_LINK_TOL) || (tolerance > TIPC_MAX_LINK_TOL))
1886 return;
1887
b97bf3fd
PL
1888 l_ptr->tolerance = tolerance;
1889 l_ptr->continuity_interval =
1890 ((tolerance / 4) > 500) ? 500 : tolerance / 4;
1891 l_ptr->abort_limit = tolerance / (l_ptr->continuity_interval / 4);
1892}
1893
a18c4bc3 1894void tipc_link_set_queue_limits(struct tipc_link *l_ptr, u32 window)
b97bf3fd
PL
1895{
1896 /* Data messages from this node, inclusive FIRST_FRAGM */
06d82c91
AS
1897 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE] = window;
1898 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE] = (window / 3) * 4;
1899 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE] = (window / 3) * 5;
1900 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE] = (window / 3) * 6;
b97bf3fd 1901 /* Transiting data messages,inclusive FIRST_FRAGM */
06d82c91
AS
1902 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE + 4] = 300;
1903 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE + 4] = 600;
1904 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE + 4] = 900;
1905 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE + 4] = 1200;
b97bf3fd 1906 l_ptr->queue_limit[CONN_MANAGER] = 1200;
b97bf3fd
PL
1907 l_ptr->queue_limit[CHANGEOVER_PROTOCOL] = 2500;
1908 l_ptr->queue_limit[NAME_DISTRIBUTOR] = 3000;
1909 /* FRAGMENT and LAST_FRAGMENT packets */
1910 l_ptr->queue_limit[MSG_FRAGMENTER] = 4000;
1911}
1912
e099e86c
JPM
1913/* tipc_link_find_owner - locate owner node of link by link's name
1914 * @name: pointer to link name string
1915 * @bearer_id: pointer to index in 'node->links' array where the link was found.
c4307285 1916 *
e099e86c 1917 * Returns pointer to node owning the link, or 0 if no matching link is found.
b97bf3fd 1918 */
e099e86c
JPM
1919static struct tipc_node *tipc_link_find_owner(const char *link_name,
1920 unsigned int *bearer_id)
b97bf3fd 1921{
a18c4bc3 1922 struct tipc_link *l_ptr;
bbfbe47c 1923 struct tipc_node *n_ptr;
886eaa1f 1924 struct tipc_node *found_node = NULL;
bbfbe47c 1925 int i;
b97bf3fd 1926
e099e86c 1927 *bearer_id = 0;
6c7a762e
YX
1928 rcu_read_lock();
1929 list_for_each_entry_rcu(n_ptr, &tipc_node_list, list) {
a11607f5 1930 tipc_node_lock(n_ptr);
bbfbe47c
EH
1931 for (i = 0; i < MAX_BEARERS; i++) {
1932 l_ptr = n_ptr->links[i];
e099e86c
JPM
1933 if (l_ptr && !strcmp(l_ptr->name, link_name)) {
1934 *bearer_id = i;
1935 found_node = n_ptr;
1936 break;
1937 }
bbfbe47c 1938 }
a11607f5 1939 tipc_node_unlock(n_ptr);
e099e86c
JPM
1940 if (found_node)
1941 break;
bbfbe47c 1942 }
6c7a762e
YX
1943 rcu_read_unlock();
1944
e099e86c 1945 return found_node;
b97bf3fd
PL
1946}
1947
5c216e1d
AS
1948/**
1949 * link_value_is_valid -- validate proposed link tolerance/priority/window
1950 *
2c53040f
BH
1951 * @cmd: value type (TIPC_CMD_SET_LINK_*)
1952 * @new_value: the new value
5c216e1d
AS
1953 *
1954 * Returns 1 if value is within range, 0 if not.
1955 */
5c216e1d
AS
1956static int link_value_is_valid(u16 cmd, u32 new_value)
1957{
1958 switch (cmd) {
1959 case TIPC_CMD_SET_LINK_TOL:
1960 return (new_value >= TIPC_MIN_LINK_TOL) &&
1961 (new_value <= TIPC_MAX_LINK_TOL);
1962 case TIPC_CMD_SET_LINK_PRI:
1963 return (new_value <= TIPC_MAX_LINK_PRI);
1964 case TIPC_CMD_SET_LINK_WINDOW:
1965 return (new_value >= TIPC_MIN_LINK_WIN) &&
1966 (new_value <= TIPC_MAX_LINK_WIN);
1967 }
1968 return 0;
1969}
1970
5c216e1d
AS
1971/**
1972 * link_cmd_set_value - change priority/tolerance/window for link/bearer/media
2c53040f
BH
1973 * @name: ptr to link, bearer, or media name
1974 * @new_value: new value of link, bearer, or media setting
1975 * @cmd: which link, bearer, or media attribute to set (TIPC_CMD_SET_LINK_*)
5c216e1d 1976 *
7216cd94 1977 * Caller must hold RTNL lock to ensure link/bearer/media is not deleted.
5c216e1d
AS
1978 *
1979 * Returns 0 if value updated and negative value on error.
1980 */
5c216e1d
AS
1981static int link_cmd_set_value(const char *name, u32 new_value, u16 cmd)
1982{
1983 struct tipc_node *node;
a18c4bc3 1984 struct tipc_link *l_ptr;
5c216e1d 1985 struct tipc_bearer *b_ptr;
358a0d1c 1986 struct tipc_media *m_ptr;
e099e86c 1987 int bearer_id;
636c0371 1988 int res = 0;
5c216e1d 1989
e099e86c
JPM
1990 node = tipc_link_find_owner(name, &bearer_id);
1991 if (node) {
5c216e1d 1992 tipc_node_lock(node);
e099e86c
JPM
1993 l_ptr = node->links[bearer_id];
1994
1995 if (l_ptr) {
1996 switch (cmd) {
1997 case TIPC_CMD_SET_LINK_TOL:
1998 link_set_supervision_props(l_ptr, new_value);
247f0f3c
YX
1999 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, 0,
2000 new_value, 0, 0);
e099e86c
JPM
2001 break;
2002 case TIPC_CMD_SET_LINK_PRI:
2003 l_ptr->priority = new_value;
247f0f3c
YX
2004 tipc_link_proto_xmit(l_ptr, STATE_MSG, 0, 0,
2005 0, new_value, 0);
e099e86c
JPM
2006 break;
2007 case TIPC_CMD_SET_LINK_WINDOW:
2008 tipc_link_set_queue_limits(l_ptr, new_value);
2009 break;
2010 default:
2011 res = -EINVAL;
2012 break;
2013 }
5c216e1d
AS
2014 }
2015 tipc_node_unlock(node);
636c0371 2016 return res;
5c216e1d
AS
2017 }
2018
2019 b_ptr = tipc_bearer_find(name);
2020 if (b_ptr) {
2021 switch (cmd) {
2022 case TIPC_CMD_SET_LINK_TOL:
2023 b_ptr->tolerance = new_value;
636c0371 2024 break;
5c216e1d
AS
2025 case TIPC_CMD_SET_LINK_PRI:
2026 b_ptr->priority = new_value;
636c0371 2027 break;
5c216e1d
AS
2028 case TIPC_CMD_SET_LINK_WINDOW:
2029 b_ptr->window = new_value;
636c0371
YX
2030 break;
2031 default:
2032 res = -EINVAL;
2033 break;
5c216e1d 2034 }
636c0371 2035 return res;
5c216e1d
AS
2036 }
2037
2038 m_ptr = tipc_media_find(name);
2039 if (!m_ptr)
2040 return -ENODEV;
2041 switch (cmd) {
2042 case TIPC_CMD_SET_LINK_TOL:
2043 m_ptr->tolerance = new_value;
636c0371 2044 break;
5c216e1d
AS
2045 case TIPC_CMD_SET_LINK_PRI:
2046 m_ptr->priority = new_value;
636c0371 2047 break;
5c216e1d
AS
2048 case TIPC_CMD_SET_LINK_WINDOW:
2049 m_ptr->window = new_value;
636c0371
YX
2050 break;
2051 default:
2052 res = -EINVAL;
2053 break;
5c216e1d 2054 }
636c0371 2055 return res;
5c216e1d
AS
2056}
2057
c4307285 2058struct sk_buff *tipc_link_cmd_config(const void *req_tlv_area, int req_tlv_space,
4323add6 2059 u16 cmd)
b97bf3fd
PL
2060{
2061 struct tipc_link_config *args;
c4307285 2062 u32 new_value;
c4307285 2063 int res;
b97bf3fd
PL
2064
2065 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_CONFIG))
4323add6 2066 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
b97bf3fd
PL
2067
2068 args = (struct tipc_link_config *)TLV_DATA(req_tlv_area);
2069 new_value = ntohl(args->value);
2070
5c216e1d
AS
2071 if (!link_value_is_valid(cmd, new_value))
2072 return tipc_cfg_reply_error_string(
2073 "cannot change, value invalid");
2074
4323add6 2075 if (!strcmp(args->name, tipc_bclink_name)) {
b97bf3fd 2076 if ((cmd == TIPC_CMD_SET_LINK_WINDOW) &&
4323add6
PL
2077 (tipc_bclink_set_queue_limits(new_value) == 0))
2078 return tipc_cfg_reply_none();
c4307285 2079 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
4323add6 2080 " (cannot change setting on broadcast link)");
b97bf3fd
PL
2081 }
2082
5c216e1d 2083 res = link_cmd_set_value(args->name, new_value, cmd);
b97bf3fd 2084 if (res)
c4307285 2085 return tipc_cfg_reply_error_string("cannot change link setting");
b97bf3fd 2086
4323add6 2087 return tipc_cfg_reply_none();
b97bf3fd
PL
2088}
2089
2090/**
2091 * link_reset_statistics - reset link statistics
2092 * @l_ptr: pointer to link
2093 */
a18c4bc3 2094static void link_reset_statistics(struct tipc_link *l_ptr)
b97bf3fd
PL
2095{
2096 memset(&l_ptr->stats, 0, sizeof(l_ptr->stats));
2097 l_ptr->stats.sent_info = l_ptr->next_out_no;
2098 l_ptr->stats.recv_info = l_ptr->next_in_no;
2099}
2100
4323add6 2101struct sk_buff *tipc_link_cmd_reset_stats(const void *req_tlv_area, int req_tlv_space)
b97bf3fd
PL
2102{
2103 char *link_name;
a18c4bc3 2104 struct tipc_link *l_ptr;
6c00055a 2105 struct tipc_node *node;
e099e86c 2106 unsigned int bearer_id;
b97bf3fd
PL
2107
2108 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
4323add6 2109 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
b97bf3fd
PL
2110
2111 link_name = (char *)TLV_DATA(req_tlv_area);
4323add6
PL
2112 if (!strcmp(link_name, tipc_bclink_name)) {
2113 if (tipc_bclink_reset_stats())
2114 return tipc_cfg_reply_error_string("link not found");
2115 return tipc_cfg_reply_none();
b97bf3fd 2116 }
e099e86c 2117 node = tipc_link_find_owner(link_name, &bearer_id);
7216cd94 2118 if (!node)
e099e86c 2119 return tipc_cfg_reply_error_string("link not found");
7216cd94 2120
a11607f5 2121 tipc_node_lock(node);
e099e86c 2122 l_ptr = node->links[bearer_id];
b97bf3fd 2123 if (!l_ptr) {
e099e86c 2124 tipc_node_unlock(node);
4323add6 2125 return tipc_cfg_reply_error_string("link not found");
b97bf3fd 2126 }
b97bf3fd 2127 link_reset_statistics(l_ptr);
4323add6 2128 tipc_node_unlock(node);
4323add6 2129 return tipc_cfg_reply_none();
b97bf3fd
PL
2130}
2131
2132/**
2133 * percent - convert count to a percentage of total (rounding up or down)
2134 */
b97bf3fd
PL
2135static u32 percent(u32 count, u32 total)
2136{
2137 return (count * 100 + (total / 2)) / total;
2138}
2139
2140/**
4323add6 2141 * tipc_link_stats - print link statistics
b97bf3fd
PL
2142 * @name: link name
2143 * @buf: print buffer area
2144 * @buf_size: size of print buffer area
c4307285 2145 *
b97bf3fd
PL
2146 * Returns length of print buffer data string (or 0 if error)
2147 */
4323add6 2148static int tipc_link_stats(const char *name, char *buf, const u32 buf_size)
b97bf3fd 2149{
dc1aed37
EH
2150 struct tipc_link *l;
2151 struct tipc_stats *s;
6c00055a 2152 struct tipc_node *node;
b97bf3fd
PL
2153 char *status;
2154 u32 profile_total = 0;
e099e86c 2155 unsigned int bearer_id;
dc1aed37 2156 int ret;
b97bf3fd 2157
4323add6
PL
2158 if (!strcmp(name, tipc_bclink_name))
2159 return tipc_bclink_stats(buf, buf_size);
b97bf3fd 2160
e099e86c 2161 node = tipc_link_find_owner(name, &bearer_id);
7216cd94 2162 if (!node)
b97bf3fd 2163 return 0;
7216cd94 2164
4323add6 2165 tipc_node_lock(node);
e099e86c
JPM
2166
2167 l = node->links[bearer_id];
2168 if (!l) {
2169 tipc_node_unlock(node);
e099e86c
JPM
2170 return 0;
2171 }
2172
dc1aed37 2173 s = &l->stats;
b97bf3fd 2174
dc1aed37 2175 if (tipc_link_is_active(l))
b97bf3fd 2176 status = "ACTIVE";
dc1aed37 2177 else if (tipc_link_is_up(l))
b97bf3fd
PL
2178 status = "STANDBY";
2179 else
2180 status = "DEFUNCT";
dc1aed37
EH
2181
2182 ret = tipc_snprintf(buf, buf_size, "Link <%s>\n"
2183 " %s MTU:%u Priority:%u Tolerance:%u ms"
2184 " Window:%u packets\n",
2185 l->name, status, l->max_pkt, l->priority,
2186 l->tolerance, l->queue_limit[0]);
2187
2188 ret += tipc_snprintf(buf + ret, buf_size - ret,
2189 " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
2190 l->next_in_no - s->recv_info, s->recv_fragments,
2191 s->recv_fragmented, s->recv_bundles,
2192 s->recv_bundled);
2193
2194 ret += tipc_snprintf(buf + ret, buf_size - ret,
2195 " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
2196 l->next_out_no - s->sent_info, s->sent_fragments,
2197 s->sent_fragmented, s->sent_bundles,
2198 s->sent_bundled);
2199
2200 profile_total = s->msg_length_counts;
b97bf3fd
PL
2201 if (!profile_total)
2202 profile_total = 1;
dc1aed37
EH
2203
2204 ret += tipc_snprintf(buf + ret, buf_size - ret,
2205 " TX profile sample:%u packets average:%u octets\n"
2206 " 0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% "
2207 "-16384:%u%% -32768:%u%% -66000:%u%%\n",
2208 s->msg_length_counts,
2209 s->msg_lengths_total / profile_total,
2210 percent(s->msg_length_profile[0], profile_total),
2211 percent(s->msg_length_profile[1], profile_total),
2212 percent(s->msg_length_profile[2], profile_total),
2213 percent(s->msg_length_profile[3], profile_total),
2214 percent(s->msg_length_profile[4], profile_total),
2215 percent(s->msg_length_profile[5], profile_total),
2216 percent(s->msg_length_profile[6], profile_total));
2217
2218 ret += tipc_snprintf(buf + ret, buf_size - ret,
2219 " RX states:%u probes:%u naks:%u defs:%u"
2220 " dups:%u\n", s->recv_states, s->recv_probes,
2221 s->recv_nacks, s->deferred_recv, s->duplicates);
2222
2223 ret += tipc_snprintf(buf + ret, buf_size - ret,
2224 " TX states:%u probes:%u naks:%u acks:%u"
2225 " dups:%u\n", s->sent_states, s->sent_probes,
2226 s->sent_nacks, s->sent_acks, s->retransmitted);
2227
2228 ret += tipc_snprintf(buf + ret, buf_size - ret,
3c294cb3
YX
2229 " Congestion link:%u Send queue"
2230 " max:%u avg:%u\n", s->link_congs,
dc1aed37
EH
2231 s->max_queue_sz, s->queue_sz_counts ?
2232 (s->accu_queue_sz / s->queue_sz_counts) : 0);
b97bf3fd 2233
4323add6 2234 tipc_node_unlock(node);
dc1aed37 2235 return ret;
b97bf3fd
PL
2236}
2237
4323add6 2238struct sk_buff *tipc_link_cmd_show_stats(const void *req_tlv_area, int req_tlv_space)
b97bf3fd
PL
2239{
2240 struct sk_buff *buf;
2241 struct tlv_desc *rep_tlv;
2242 int str_len;
dc1aed37
EH
2243 int pb_len;
2244 char *pb;
b97bf3fd
PL
2245
2246 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
4323add6 2247 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
b97bf3fd 2248
dc1aed37 2249 buf = tipc_cfg_reply_alloc(TLV_SPACE(ULTRA_STRING_MAX_LEN));
b97bf3fd
PL
2250 if (!buf)
2251 return NULL;
2252
2253 rep_tlv = (struct tlv_desc *)buf->data;
dc1aed37
EH
2254 pb = TLV_DATA(rep_tlv);
2255 pb_len = ULTRA_STRING_MAX_LEN;
4323add6 2256 str_len = tipc_link_stats((char *)TLV_DATA(req_tlv_area),
dc1aed37 2257 pb, pb_len);
b97bf3fd 2258 if (!str_len) {
5f6d9123 2259 kfree_skb(buf);
c4307285 2260 return tipc_cfg_reply_error_string("link not found");
b97bf3fd 2261 }
dc1aed37 2262 str_len += 1; /* for "\0" */
b97bf3fd
PL
2263 skb_put(buf, TLV_SPACE(str_len));
2264 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
2265
2266 return buf;
2267}
2268
b97bf3fd 2269/**
4323add6 2270 * tipc_link_get_max_pkt - get maximum packet size to use when sending to destination
b97bf3fd
PL
2271 * @dest: network address of destination node
2272 * @selector: used to select from set of active links
c4307285 2273 *
b97bf3fd
PL
2274 * If no active link can be found, uses default maximum packet size.
2275 */
4323add6 2276u32 tipc_link_get_max_pkt(u32 dest, u32 selector)
b97bf3fd 2277{
6c00055a 2278 struct tipc_node *n_ptr;
a18c4bc3 2279 struct tipc_link *l_ptr;
b97bf3fd 2280 u32 res = MAX_PKT_DEFAULT;
c4307285 2281
b97bf3fd
PL
2282 if (dest == tipc_own_addr)
2283 return MAX_MSG_SIZE;
2284
51a8e4de 2285 n_ptr = tipc_node_find(dest);
b97bf3fd 2286 if (n_ptr) {
4323add6 2287 tipc_node_lock(n_ptr);
b97bf3fd
PL
2288 l_ptr = n_ptr->active_links[selector & 1];
2289 if (l_ptr)
15e979da 2290 res = l_ptr->max_pkt;
4323add6 2291 tipc_node_unlock(n_ptr);
b97bf3fd 2292 }
b97bf3fd
PL
2293 return res;
2294}
2295
a18c4bc3 2296static void link_print(struct tipc_link *l_ptr, const char *str)
b97bf3fd 2297{
7a2f7d18
YX
2298 struct tipc_bearer *b_ptr;
2299
2300 rcu_read_lock();
2301 b_ptr = rcu_dereference_rtnl(bearer_list[l_ptr->bearer_id]);
2302 if (b_ptr)
2303 pr_info("%s Link %x<%s>:", str, l_ptr->addr, b_ptr->name);
2304 rcu_read_unlock();
8d64a5ba 2305
b97bf3fd 2306 if (link_working_unknown(l_ptr))
5deedde9 2307 pr_cont(":WU\n");
8d64a5ba 2308 else if (link_reset_reset(l_ptr))
5deedde9 2309 pr_cont(":RR\n");
8d64a5ba 2310 else if (link_reset_unknown(l_ptr))
5deedde9 2311 pr_cont(":RU\n");
8d64a5ba 2312 else if (link_working_working(l_ptr))
5deedde9
PG
2313 pr_cont(":WW\n");
2314 else
2315 pr_cont("\n");
b97bf3fd 2316}
0655f6a8
RA
2317
2318/* Parse and validate nested (link) properties valid for media, bearer and link
2319 */
2320int tipc_nl_parse_link_prop(struct nlattr *prop, struct nlattr *props[])
2321{
2322 int err;
2323
2324 err = nla_parse_nested(props, TIPC_NLA_PROP_MAX, prop,
2325 tipc_nl_prop_policy);
2326 if (err)
2327 return err;
2328
2329 if (props[TIPC_NLA_PROP_PRIO]) {
2330 u32 prio;
2331
2332 prio = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
2333 if (prio > TIPC_MAX_LINK_PRI)
2334 return -EINVAL;
2335 }
2336
2337 if (props[TIPC_NLA_PROP_TOL]) {
2338 u32 tol;
2339
2340 tol = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
2341 if ((tol < TIPC_MIN_LINK_TOL) || (tol > TIPC_MAX_LINK_TOL))
2342 return -EINVAL;
2343 }
2344
2345 if (props[TIPC_NLA_PROP_WIN]) {
2346 u32 win;
2347
2348 win = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
2349 if ((win < TIPC_MIN_LINK_WIN) || (win > TIPC_MAX_LINK_WIN))
2350 return -EINVAL;
2351 }
2352
2353 return 0;
2354}
7be57fc6 2355
f96ce7a2
RA
2356int tipc_nl_link_set(struct sk_buff *skb, struct genl_info *info)
2357{
2358 int err;
2359 int res = 0;
2360 int bearer_id;
2361 char *name;
2362 struct tipc_link *link;
2363 struct tipc_node *node;
2364 struct nlattr *attrs[TIPC_NLA_LINK_MAX + 1];
2365
2366 if (!info->attrs[TIPC_NLA_LINK])
2367 return -EINVAL;
2368
2369 err = nla_parse_nested(attrs, TIPC_NLA_LINK_MAX,
2370 info->attrs[TIPC_NLA_LINK],
2371 tipc_nl_link_policy);
2372 if (err)
2373 return err;
2374
2375 if (!attrs[TIPC_NLA_LINK_NAME])
2376 return -EINVAL;
2377
2378 name = nla_data(attrs[TIPC_NLA_LINK_NAME]);
2379
2380 node = tipc_link_find_owner(name, &bearer_id);
2381 if (!node)
2382 return -EINVAL;
2383
2384 tipc_node_lock(node);
2385
2386 link = node->links[bearer_id];
2387 if (!link) {
2388 res = -EINVAL;
2389 goto out;
2390 }
2391
2392 if (attrs[TIPC_NLA_LINK_PROP]) {
2393 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
2394
2395 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_LINK_PROP],
2396 props);
2397 if (err) {
2398 res = err;
2399 goto out;
2400 }
2401
2402 if (props[TIPC_NLA_PROP_TOL]) {
2403 u32 tol;
2404
2405 tol = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
2406 link_set_supervision_props(link, tol);
2407 tipc_link_proto_xmit(link, STATE_MSG, 0, 0, tol, 0, 0);
2408 }
2409 if (props[TIPC_NLA_PROP_PRIO]) {
2410 u32 prio;
2411
2412 prio = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
2413 link->priority = prio;
2414 tipc_link_proto_xmit(link, STATE_MSG, 0, 0, 0, prio, 0);
2415 }
2416 if (props[TIPC_NLA_PROP_WIN]) {
2417 u32 win;
2418
2419 win = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
2420 tipc_link_set_queue_limits(link, win);
2421 }
2422 }
2423
2424out:
2425 tipc_node_unlock(node);
2426
2427 return res;
2428}
d8182804
RA
2429
2430static int __tipc_nl_add_stats(struct sk_buff *skb, struct tipc_stats *s)
7be57fc6
RA
2431{
2432 int i;
2433 struct nlattr *stats;
2434
2435 struct nla_map {
2436 u32 key;
2437 u32 val;
2438 };
2439
2440 struct nla_map map[] = {
2441 {TIPC_NLA_STATS_RX_INFO, s->recv_info},
2442 {TIPC_NLA_STATS_RX_FRAGMENTS, s->recv_fragments},
2443 {TIPC_NLA_STATS_RX_FRAGMENTED, s->recv_fragmented},
2444 {TIPC_NLA_STATS_RX_BUNDLES, s->recv_bundles},
2445 {TIPC_NLA_STATS_RX_BUNDLED, s->recv_bundled},
2446 {TIPC_NLA_STATS_TX_INFO, s->sent_info},
2447 {TIPC_NLA_STATS_TX_FRAGMENTS, s->sent_fragments},
2448 {TIPC_NLA_STATS_TX_FRAGMENTED, s->sent_fragmented},
2449 {TIPC_NLA_STATS_TX_BUNDLES, s->sent_bundles},
2450 {TIPC_NLA_STATS_TX_BUNDLED, s->sent_bundled},
2451 {TIPC_NLA_STATS_MSG_PROF_TOT, (s->msg_length_counts) ?
2452 s->msg_length_counts : 1},
2453 {TIPC_NLA_STATS_MSG_LEN_CNT, s->msg_length_counts},
2454 {TIPC_NLA_STATS_MSG_LEN_TOT, s->msg_lengths_total},
2455 {TIPC_NLA_STATS_MSG_LEN_P0, s->msg_length_profile[0]},
2456 {TIPC_NLA_STATS_MSG_LEN_P1, s->msg_length_profile[1]},
2457 {TIPC_NLA_STATS_MSG_LEN_P2, s->msg_length_profile[2]},
2458 {TIPC_NLA_STATS_MSG_LEN_P3, s->msg_length_profile[3]},
2459 {TIPC_NLA_STATS_MSG_LEN_P4, s->msg_length_profile[4]},
2460 {TIPC_NLA_STATS_MSG_LEN_P5, s->msg_length_profile[5]},
2461 {TIPC_NLA_STATS_MSG_LEN_P6, s->msg_length_profile[6]},
2462 {TIPC_NLA_STATS_RX_STATES, s->recv_states},
2463 {TIPC_NLA_STATS_RX_PROBES, s->recv_probes},
2464 {TIPC_NLA_STATS_RX_NACKS, s->recv_nacks},
2465 {TIPC_NLA_STATS_RX_DEFERRED, s->deferred_recv},
2466 {TIPC_NLA_STATS_TX_STATES, s->sent_states},
2467 {TIPC_NLA_STATS_TX_PROBES, s->sent_probes},
2468 {TIPC_NLA_STATS_TX_NACKS, s->sent_nacks},
2469 {TIPC_NLA_STATS_TX_ACKS, s->sent_acks},
2470 {TIPC_NLA_STATS_RETRANSMITTED, s->retransmitted},
2471 {TIPC_NLA_STATS_DUPLICATES, s->duplicates},
2472 {TIPC_NLA_STATS_LINK_CONGS, s->link_congs},
2473 {TIPC_NLA_STATS_MAX_QUEUE, s->max_queue_sz},
2474 {TIPC_NLA_STATS_AVG_QUEUE, s->queue_sz_counts ?
2475 (s->accu_queue_sz / s->queue_sz_counts) : 0}
2476 };
2477
2478 stats = nla_nest_start(skb, TIPC_NLA_LINK_STATS);
2479 if (!stats)
2480 return -EMSGSIZE;
2481
2482 for (i = 0; i < ARRAY_SIZE(map); i++)
2483 if (nla_put_u32(skb, map[i].key, map[i].val))
2484 goto msg_full;
2485
2486 nla_nest_end(skb, stats);
2487
2488 return 0;
2489msg_full:
2490 nla_nest_cancel(skb, stats);
2491
2492 return -EMSGSIZE;
2493}
2494
2495/* Caller should hold appropriate locks to protect the link */
d8182804 2496static int __tipc_nl_add_link(struct tipc_nl_msg *msg, struct tipc_link *link)
7be57fc6
RA
2497{
2498 int err;
2499 void *hdr;
2500 struct nlattr *attrs;
2501 struct nlattr *prop;
2502
2503 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_v2_family,
2504 NLM_F_MULTI, TIPC_NL_LINK_GET);
2505 if (!hdr)
2506 return -EMSGSIZE;
2507
2508 attrs = nla_nest_start(msg->skb, TIPC_NLA_LINK);
2509 if (!attrs)
2510 goto msg_full;
2511
2512 if (nla_put_string(msg->skb, TIPC_NLA_LINK_NAME, link->name))
2513 goto attr_msg_full;
2514 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_DEST,
2515 tipc_cluster_mask(tipc_own_addr)))
2516 goto attr_msg_full;
2517 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_MTU, link->max_pkt))
2518 goto attr_msg_full;
2519 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_RX, link->next_in_no))
2520 goto attr_msg_full;
2521 if (nla_put_u32(msg->skb, TIPC_NLA_LINK_TX, link->next_out_no))
2522 goto attr_msg_full;
2523
2524 if (tipc_link_is_up(link))
2525 if (nla_put_flag(msg->skb, TIPC_NLA_LINK_UP))
2526 goto attr_msg_full;
2527 if (tipc_link_is_active(link))
2528 if (nla_put_flag(msg->skb, TIPC_NLA_LINK_ACTIVE))
2529 goto attr_msg_full;
2530
2531 prop = nla_nest_start(msg->skb, TIPC_NLA_LINK_PROP);
2532 if (!prop)
2533 goto attr_msg_full;
2534 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, link->priority))
2535 goto prop_msg_full;
2536 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_TOL, link->tolerance))
2537 goto prop_msg_full;
2538 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN,
2539 link->queue_limit[TIPC_LOW_IMPORTANCE]))
2540 goto prop_msg_full;
2541 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, link->priority))
2542 goto prop_msg_full;
2543 nla_nest_end(msg->skb, prop);
2544
2545 err = __tipc_nl_add_stats(msg->skb, &link->stats);
2546 if (err)
2547 goto attr_msg_full;
2548
2549 nla_nest_end(msg->skb, attrs);
2550 genlmsg_end(msg->skb, hdr);
2551
2552 return 0;
2553
2554prop_msg_full:
2555 nla_nest_cancel(msg->skb, prop);
2556attr_msg_full:
2557 nla_nest_cancel(msg->skb, attrs);
2558msg_full:
2559 genlmsg_cancel(msg->skb, hdr);
2560
2561 return -EMSGSIZE;
2562}
2563
2564/* Caller should hold node lock */
d8182804
RA
2565static int __tipc_nl_add_node_links(struct tipc_nl_msg *msg,
2566 struct tipc_node *node,
2567 u32 *prev_link)
7be57fc6
RA
2568{
2569 u32 i;
2570 int err;
2571
2572 for (i = *prev_link; i < MAX_BEARERS; i++) {
2573 *prev_link = i;
2574
2575 if (!node->links[i])
2576 continue;
2577
2578 err = __tipc_nl_add_link(msg, node->links[i]);
2579 if (err)
2580 return err;
2581 }
2582 *prev_link = 0;
2583
2584 return 0;
2585}
2586
2587int tipc_nl_link_dump(struct sk_buff *skb, struct netlink_callback *cb)
2588{
2589 struct tipc_node *node;
2590 struct tipc_nl_msg msg;
2591 u32 prev_node = cb->args[0];
2592 u32 prev_link = cb->args[1];
2593 int done = cb->args[2];
2594 int err;
2595
2596 if (done)
2597 return 0;
2598
2599 msg.skb = skb;
2600 msg.portid = NETLINK_CB(cb->skb).portid;
2601 msg.seq = cb->nlh->nlmsg_seq;
2602
2603 rcu_read_lock();
2604
2605 if (prev_node) {
2606 node = tipc_node_find(prev_node);
2607 if (!node) {
2608 /* We never set seq or call nl_dump_check_consistent()
2609 * this means that setting prev_seq here will cause the
2610 * consistence check to fail in the netlink callback
2611 * handler. Resulting in the last NLMSG_DONE message
2612 * having the NLM_F_DUMP_INTR flag set.
2613 */
2614 cb->prev_seq = 1;
2615 goto out;
2616 }
2617
2618 list_for_each_entry_continue_rcu(node, &tipc_node_list, list) {
2619 tipc_node_lock(node);
2620 err = __tipc_nl_add_node_links(&msg, node, &prev_link);
2621 tipc_node_unlock(node);
2622 if (err)
2623 goto out;
2624
2625 prev_node = node->addr;
2626 }
2627 } else {
2628 err = tipc_nl_add_bc_link(&msg);
2629 if (err)
2630 goto out;
2631
2632 list_for_each_entry_rcu(node, &tipc_node_list, list) {
2633 tipc_node_lock(node);
2634 err = __tipc_nl_add_node_links(&msg, node, &prev_link);
2635 tipc_node_unlock(node);
2636 if (err)
2637 goto out;
2638
2639 prev_node = node->addr;
2640 }
2641 }
2642 done = 1;
2643out:
2644 rcu_read_unlock();
2645
2646 cb->args[0] = prev_node;
2647 cb->args[1] = prev_link;
2648 cb->args[2] = done;
2649
2650 return skb->len;
2651}
2652
2653int tipc_nl_link_get(struct sk_buff *skb, struct genl_info *info)
2654{
2655 struct sk_buff *ans_skb;
2656 struct tipc_nl_msg msg;
2657 struct tipc_link *link;
2658 struct tipc_node *node;
2659 char *name;
2660 int bearer_id;
2661 int err;
2662
2663 if (!info->attrs[TIPC_NLA_LINK_NAME])
2664 return -EINVAL;
2665
2666 name = nla_data(info->attrs[TIPC_NLA_LINK_NAME]);
2667 node = tipc_link_find_owner(name, &bearer_id);
2668 if (!node)
2669 return -EINVAL;
2670
2671 ans_skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
2672 if (!ans_skb)
2673 return -ENOMEM;
2674
2675 msg.skb = ans_skb;
2676 msg.portid = info->snd_portid;
2677 msg.seq = info->snd_seq;
2678
2679 tipc_node_lock(node);
2680 link = node->links[bearer_id];
2681 if (!link) {
2682 err = -EINVAL;
2683 goto err_out;
2684 }
2685
2686 err = __tipc_nl_add_link(&msg, link);
2687 if (err)
2688 goto err_out;
2689
2690 tipc_node_unlock(node);
2691
2692 return genlmsg_reply(ans_skb, info);
2693
2694err_out:
2695 tipc_node_unlock(node);
2696 nlmsg_free(ans_skb);
2697
2698 return err;
2699}
ae36342b
RA
2700
2701int tipc_nl_link_reset_stats(struct sk_buff *skb, struct genl_info *info)
2702{
2703 int err;
2704 char *link_name;
2705 unsigned int bearer_id;
2706 struct tipc_link *link;
2707 struct tipc_node *node;
2708 struct nlattr *attrs[TIPC_NLA_LINK_MAX + 1];
2709
2710 if (!info->attrs[TIPC_NLA_LINK])
2711 return -EINVAL;
2712
2713 err = nla_parse_nested(attrs, TIPC_NLA_LINK_MAX,
2714 info->attrs[TIPC_NLA_LINK],
2715 tipc_nl_link_policy);
2716 if (err)
2717 return err;
2718
2719 if (!attrs[TIPC_NLA_LINK_NAME])
2720 return -EINVAL;
2721
2722 link_name = nla_data(attrs[TIPC_NLA_LINK_NAME]);
2723
2724 if (strcmp(link_name, tipc_bclink_name) == 0) {
2725 err = tipc_bclink_reset_stats();
2726 if (err)
2727 return err;
2728 return 0;
2729 }
2730
2731 node = tipc_link_find_owner(link_name, &bearer_id);
2732 if (!node)
2733 return -EINVAL;
2734
2735 tipc_node_lock(node);
2736
2737 link = node->links[bearer_id];
2738 if (!link) {
2739 tipc_node_unlock(node);
2740 return -EINVAL;
2741 }
2742
2743 link_reset_statistics(link);
2744
2745 tipc_node_unlock(node);
2746
2747 return 0;
2748}