blob: 2a9f44a203ebf71210ff95cc8c64b23a842cc7da [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
2 * net/tipc/link.c: TIPC link code
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Allan Stephens05646c92007-06-10 17:25:24 -07004 * Copyright (c) 1996-2007, Ericsson AB
Allan Stephens23dd4cc2011-01-07 11:43:40 -05005 * Copyright (c) 2004-2007, 2010-2011, Wind River Systems
Per Lidenb97bf3f2006-01-02 19:04:38 +01006 * All rights reserved.
7 *
Per Liden9ea1fd32006-01-11 13:30:43 +01008 * Redistribution and use in source and binary forms, with or without
Per Lidenb97bf3f2006-01-02 19:04:38 +01009 * modification, are permitted provided that the following conditions are met:
10 *
Per Liden9ea1fd32006-01-11 13:30:43 +010011 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the names of the copyright holders nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
Per Lidenb97bf3f2006-01-02 19:04:38 +010019 *
Per Liden9ea1fd32006-01-11 13:30:43 +010020 * Alternatively, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") version 2 as published by the Free
22 * Software Foundation.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Per Lidenb97bf3f2006-01-02 19:04:38 +010034 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include "core.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010038#include "link.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010039#include "port.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010040#include "name_distr.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010041#include "discover.h"
42#include "config.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010043
44
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090045/*
Allan Stephensa686e682008-06-04 17:29:39 -070046 * Out-of-range value for link session numbers
47 */
48
49#define INVALID_SESSION 0x10000
50
51/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090052 * Link state events:
Per Lidenb97bf3f2006-01-02 19:04:38 +010053 */
54
55#define STARTING_EVT 856384768 /* link processing trigger */
56#define TRAFFIC_MSG_EVT 560815u /* rx'd ??? */
57#define TIMEOUT_EVT 560817u /* link timer expired */
58
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090059/*
60 * The following two 'message types' is really just implementation
61 * data conveniently stored in the message header.
Per Lidenb97bf3f2006-01-02 19:04:38 +010062 * They must not be considered part of the protocol
63 */
64#define OPEN_MSG 0
65#define CLOSED_MSG 1
66
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090067/*
Per Lidenb97bf3f2006-01-02 19:04:38 +010068 * State value stored in 'exp_msg_count'
69 */
70
71#define START_CHANGEOVER 100000u
72
73/**
74 * struct link_name - deconstructed link name
75 * @addr_local: network address of node at this end
76 * @if_local: name of interface at this end
77 * @addr_peer: network address of node at far end
78 * @if_peer: name of interface at far end
79 */
80
81struct link_name {
82 u32 addr_local;
83 char if_local[TIPC_MAX_IF_NAME];
84 u32 addr_peer;
85 char if_peer[TIPC_MAX_IF_NAME];
86};
87
Per Lidenb97bf3f2006-01-02 19:04:38 +010088static void link_handle_out_of_seq_msg(struct link *l_ptr,
89 struct sk_buff *buf);
90static void link_recv_proto_msg(struct link *l_ptr, struct sk_buff *buf);
91static int link_recv_changeover_msg(struct link **l_ptr, struct sk_buff **buf);
92static void link_set_supervision_props(struct link *l_ptr, u32 tolerance);
Allan Stephens23dd4cc2011-01-07 11:43:40 -050093static int link_send_sections_long(struct tipc_port *sender,
Per Lidenb97bf3f2006-01-02 19:04:38 +010094 struct iovec const *msg_sect,
95 u32 num_sect, u32 destnode);
96static void link_check_defragm_bufs(struct link *l_ptr);
97static void link_state_event(struct link *l_ptr, u32 event);
98static void link_reset_statistics(struct link *l_ptr);
Allan Stephens8d64a5b2010-12-31 18:59:27 +000099static void link_print(struct link *l_ptr, const char *str);
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000100static void link_start(struct link *l_ptr);
101static int link_send_long_buf(struct link *l_ptr, struct sk_buff *buf);
102
Per Lidenb97bf3f2006-01-02 19:04:38 +0100103/*
Sam Ravnborg05790c62006-03-20 22:37:04 -0800104 * Simple link routines
Per Lidenb97bf3f2006-01-02 19:04:38 +0100105 */
106
Sam Ravnborg05790c62006-03-20 22:37:04 -0800107static unsigned int align(unsigned int i)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100108{
109 return (i + 3) & ~3u;
110}
111
Sam Ravnborg05790c62006-03-20 22:37:04 -0800112static void link_init_max_pkt(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100113{
114 u32 max_pkt;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900115
Allan Stephens2d627b92011-01-07 13:00:11 -0500116 max_pkt = (l_ptr->b_ptr->mtu & ~3);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100117 if (max_pkt > MAX_MSG_SIZE)
118 max_pkt = MAX_MSG_SIZE;
119
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900120 l_ptr->max_pkt_target = max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100121 if (l_ptr->max_pkt_target < MAX_PKT_DEFAULT)
122 l_ptr->max_pkt = l_ptr->max_pkt_target;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900123 else
Per Lidenb97bf3f2006-01-02 19:04:38 +0100124 l_ptr->max_pkt = MAX_PKT_DEFAULT;
125
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900126 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100127}
128
Sam Ravnborg05790c62006-03-20 22:37:04 -0800129static u32 link_next_sent(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100130{
131 if (l_ptr->next_out)
132 return msg_seqno(buf_msg(l_ptr->next_out));
133 return mod(l_ptr->next_out_no);
134}
135
Sam Ravnborg05790c62006-03-20 22:37:04 -0800136static u32 link_last_sent(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100137{
138 return mod(link_next_sent(l_ptr) - 1);
139}
140
141/*
Sam Ravnborg05790c62006-03-20 22:37:04 -0800142 * Simple non-static link routines (i.e. referenced outside this file)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100143 */
144
Per Liden4323add2006-01-18 00:38:21 +0100145int tipc_link_is_up(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100146{
147 if (!l_ptr)
148 return 0;
Eric Dumazeta02cec22010-09-22 20:43:57 +0000149 return link_working_working(l_ptr) || link_working_unknown(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100150}
151
Per Liden4323add2006-01-18 00:38:21 +0100152int tipc_link_is_active(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100153{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000154 return (l_ptr->owner->active_links[0] == l_ptr) ||
155 (l_ptr->owner->active_links[1] == l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100156}
157
158/**
159 * link_name_validate - validate & (optionally) deconstruct link name
160 * @name - ptr to link name string
161 * @name_parts - ptr to area for link name components (or NULL if not needed)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900162 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100163 * Returns 1 if link name is valid, otherwise 0.
164 */
165
166static int link_name_validate(const char *name, struct link_name *name_parts)
167{
168 char name_copy[TIPC_MAX_LINK_NAME];
169 char *addr_local;
170 char *if_local;
171 char *addr_peer;
172 char *if_peer;
173 char dummy;
174 u32 z_local, c_local, n_local;
175 u32 z_peer, c_peer, n_peer;
176 u32 if_local_len;
177 u32 if_peer_len;
178
179 /* copy link name & ensure length is OK */
180
181 name_copy[TIPC_MAX_LINK_NAME - 1] = 0;
182 /* need above in case non-Posix strncpy() doesn't pad with nulls */
183 strncpy(name_copy, name, TIPC_MAX_LINK_NAME);
184 if (name_copy[TIPC_MAX_LINK_NAME - 1] != 0)
185 return 0;
186
187 /* ensure all component parts of link name are present */
188
189 addr_local = name_copy;
Allan Stephens2db99832010-12-31 18:59:33 +0000190 if_local = strchr(addr_local, ':');
191 if (if_local == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100192 return 0;
193 *(if_local++) = 0;
Allan Stephens2db99832010-12-31 18:59:33 +0000194 addr_peer = strchr(if_local, '-');
195 if (addr_peer == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100196 return 0;
197 *(addr_peer++) = 0;
198 if_local_len = addr_peer - if_local;
Allan Stephens2db99832010-12-31 18:59:33 +0000199 if_peer = strchr(addr_peer, ':');
200 if (if_peer == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100201 return 0;
202 *(if_peer++) = 0;
203 if_peer_len = strlen(if_peer) + 1;
204
205 /* validate component parts of link name */
206
207 if ((sscanf(addr_local, "%u.%u.%u%c",
208 &z_local, &c_local, &n_local, &dummy) != 3) ||
209 (sscanf(addr_peer, "%u.%u.%u%c",
210 &z_peer, &c_peer, &n_peer, &dummy) != 3) ||
211 (z_local > 255) || (c_local > 4095) || (n_local > 4095) ||
212 (z_peer > 255) || (c_peer > 4095) || (n_peer > 4095) ||
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900213 (if_local_len <= 1) || (if_local_len > TIPC_MAX_IF_NAME) ||
214 (if_peer_len <= 1) || (if_peer_len > TIPC_MAX_IF_NAME) ||
Per Lidenb97bf3f2006-01-02 19:04:38 +0100215 (strspn(if_local, tipc_alphabet) != (if_local_len - 1)) ||
216 (strspn(if_peer, tipc_alphabet) != (if_peer_len - 1)))
217 return 0;
218
219 /* return link name components, if necessary */
220
221 if (name_parts) {
222 name_parts->addr_local = tipc_addr(z_local, c_local, n_local);
223 strcpy(name_parts->if_local, if_local);
224 name_parts->addr_peer = tipc_addr(z_peer, c_peer, n_peer);
225 strcpy(name_parts->if_peer, if_peer);
226 }
227 return 1;
228}
229
230/**
231 * link_timeout - handle expiration of link timer
232 * @l_ptr: pointer to link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900233 *
Per Liden4323add2006-01-18 00:38:21 +0100234 * This routine must not grab "tipc_net_lock" to avoid a potential deadlock conflict
235 * with tipc_link_delete(). (There is no risk that the node will be deleted by
236 * another thread because tipc_link_delete() always cancels the link timer before
237 * tipc_node_delete() is called.)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100238 */
239
240static void link_timeout(struct link *l_ptr)
241{
Per Liden4323add2006-01-18 00:38:21 +0100242 tipc_node_lock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100243
244 /* update counters used in statistical profiling of send traffic */
245
246 l_ptr->stats.accu_queue_sz += l_ptr->out_queue_size;
247 l_ptr->stats.queue_sz_counts++;
248
Per Lidenb97bf3f2006-01-02 19:04:38 +0100249 if (l_ptr->first_out) {
250 struct tipc_msg *msg = buf_msg(l_ptr->first_out);
251 u32 length = msg_size(msg);
252
Joe Perchesf64f9e72009-11-29 16:55:45 -0800253 if ((msg_user(msg) == MSG_FRAGMENTER) &&
254 (msg_type(msg) == FIRST_FRAGMENT)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100255 length = msg_size(msg_get_wrapped(msg));
256 }
257 if (length) {
258 l_ptr->stats.msg_lengths_total += length;
259 l_ptr->stats.msg_length_counts++;
260 if (length <= 64)
261 l_ptr->stats.msg_length_profile[0]++;
262 else if (length <= 256)
263 l_ptr->stats.msg_length_profile[1]++;
264 else if (length <= 1024)
265 l_ptr->stats.msg_length_profile[2]++;
266 else if (length <= 4096)
267 l_ptr->stats.msg_length_profile[3]++;
268 else if (length <= 16384)
269 l_ptr->stats.msg_length_profile[4]++;
270 else if (length <= 32768)
271 l_ptr->stats.msg_length_profile[5]++;
272 else
273 l_ptr->stats.msg_length_profile[6]++;
274 }
275 }
276
277 /* do all other link processing performed on a periodic basis */
278
279 link_check_defragm_bufs(l_ptr);
280
281 link_state_event(l_ptr, TIMEOUT_EVT);
282
283 if (l_ptr->next_out)
Per Liden4323add2006-01-18 00:38:21 +0100284 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100285
Per Liden4323add2006-01-18 00:38:21 +0100286 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100287}
288
Sam Ravnborg05790c62006-03-20 22:37:04 -0800289static void link_set_timer(struct link *l_ptr, u32 time)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100290{
291 k_start_timer(&l_ptr->timer, time);
292}
293
294/**
Per Liden4323add2006-01-18 00:38:21 +0100295 * tipc_link_create - create a new link
Allan Stephens37b9c082011-02-28 11:32:27 -0500296 * @n_ptr: pointer to associated node
Per Lidenb97bf3f2006-01-02 19:04:38 +0100297 * @b_ptr: pointer to associated bearer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100298 * @media_addr: media address to use when sending messages over link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900299 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100300 * Returns pointer to link.
301 */
302
Allan Stephens37b9c082011-02-28 11:32:27 -0500303struct link *tipc_link_create(struct tipc_node *n_ptr,
304 struct tipc_bearer *b_ptr,
Per Liden4323add2006-01-18 00:38:21 +0100305 const struct tipc_media_addr *media_addr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100306{
307 struct link *l_ptr;
308 struct tipc_msg *msg;
309 char *if_name;
Allan Stephens37b9c082011-02-28 11:32:27 -0500310 char addr_string[16];
311 u32 peer = n_ptr->addr;
312
313 if (n_ptr->link_cnt >= 2) {
314 tipc_addr_string_fill(addr_string, n_ptr->addr);
315 err("Attempt to establish third link to %s\n", addr_string);
316 return NULL;
317 }
318
319 if (n_ptr->links[b_ptr->identity]) {
320 tipc_addr_string_fill(addr_string, n_ptr->addr);
321 err("Attempt to establish second link on <%s> to %s\n",
322 b_ptr->name, addr_string);
323 return NULL;
324 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100325
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700326 l_ptr = kzalloc(sizeof(*l_ptr), GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100327 if (!l_ptr) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700328 warn("Link creation failed, no memory\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100329 return NULL;
330 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100331
332 l_ptr->addr = peer;
Allan Stephens2d627b92011-01-07 13:00:11 -0500333 if_name = strchr(b_ptr->name, ':') + 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100334 sprintf(l_ptr->name, "%u.%u.%u:%s-%u.%u.%u:",
335 tipc_zone(tipc_own_addr), tipc_cluster(tipc_own_addr),
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900336 tipc_node(tipc_own_addr),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100337 if_name,
338 tipc_zone(peer), tipc_cluster(peer), tipc_node(peer));
339 /* note: peer i/f is appended to link name by reset/activate */
340 memcpy(&l_ptr->media_addr, media_addr, sizeof(*media_addr));
Allan Stephens37b9c082011-02-28 11:32:27 -0500341 l_ptr->owner = n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100342 l_ptr->checkpoint = 1;
343 l_ptr->b_ptr = b_ptr;
344 link_set_supervision_props(l_ptr, b_ptr->media->tolerance);
345 l_ptr->state = RESET_UNKNOWN;
346
347 l_ptr->pmsg = (struct tipc_msg *)&l_ptr->proto_msg;
348 msg = l_ptr->pmsg;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000349 tipc_msg_init(msg, LINK_PROTOCOL, RESET_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100350 msg_set_size(msg, sizeof(l_ptr->proto_msg));
Allan Stephensa686e682008-06-04 17:29:39 -0700351 msg_set_session(msg, (tipc_random & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100352 msg_set_bearer_id(msg, b_ptr->identity);
353 strcpy((char *)msg_data(msg), if_name);
354
355 l_ptr->priority = b_ptr->priority;
Per Liden4323add2006-01-18 00:38:21 +0100356 tipc_link_set_queue_limits(l_ptr, b_ptr->media->window);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100357
358 link_init_max_pkt(l_ptr);
359
360 l_ptr->next_out_no = 1;
361 INIT_LIST_HEAD(&l_ptr->waiting_ports);
362
363 link_reset_statistics(l_ptr);
364
Allan Stephens37b9c082011-02-28 11:32:27 -0500365 tipc_node_attach_link(n_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100366
Florian Westphal945710652007-07-26 00:05:07 -0700367 k_init_timer(&l_ptr->timer, (Handler)link_timeout, (unsigned long)l_ptr);
368 list_add_tail(&l_ptr->link_list, &b_ptr->links);
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000369 tipc_k_signal((Handler)link_start, (unsigned long)l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100370
Per Lidenb97bf3f2006-01-02 19:04:38 +0100371 return l_ptr;
372}
373
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900374/**
Per Liden4323add2006-01-18 00:38:21 +0100375 * tipc_link_delete - delete a link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100376 * @l_ptr: pointer to link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900377 *
Per Liden4323add2006-01-18 00:38:21 +0100378 * Note: 'tipc_net_lock' is write_locked, bearer is locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100379 * This routine must not grab the node lock until after link timer cancellation
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900380 * to avoid a potential deadlock situation.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100381 */
382
Per Liden4323add2006-01-18 00:38:21 +0100383void tipc_link_delete(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100384{
385 if (!l_ptr) {
386 err("Attempt to delete non-existent link\n");
387 return;
388 }
389
Per Lidenb97bf3f2006-01-02 19:04:38 +0100390 k_cancel_timer(&l_ptr->timer);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900391
Per Liden4323add2006-01-18 00:38:21 +0100392 tipc_node_lock(l_ptr->owner);
393 tipc_link_reset(l_ptr);
394 tipc_node_detach_link(l_ptr->owner, l_ptr);
395 tipc_link_stop(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100396 list_del_init(&l_ptr->link_list);
Per Liden4323add2006-01-18 00:38:21 +0100397 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100398 k_term_timer(&l_ptr->timer);
399 kfree(l_ptr);
400}
401
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000402static void link_start(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100403{
Allan Stephens214dda42011-01-24 16:22:43 -0500404 tipc_node_lock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100405 link_state_event(l_ptr, STARTING_EVT);
Allan Stephens214dda42011-01-24 16:22:43 -0500406 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100407}
408
409/**
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900410 * link_schedule_port - schedule port for deferred sending
Per Lidenb97bf3f2006-01-02 19:04:38 +0100411 * @l_ptr: pointer to link
412 * @origport: reference to sending port
413 * @sz: amount of data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900414 *
415 * Schedules port for renewed sending of messages after link congestion
Per Lidenb97bf3f2006-01-02 19:04:38 +0100416 * has abated.
417 */
418
419static int link_schedule_port(struct link *l_ptr, u32 origport, u32 sz)
420{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500421 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100422
Per Liden4323add2006-01-18 00:38:21 +0100423 spin_lock_bh(&tipc_port_list_lock);
424 p_ptr = tipc_port_lock(origport);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100425 if (p_ptr) {
426 if (!p_ptr->wakeup)
427 goto exit;
428 if (!list_empty(&p_ptr->wait_list))
429 goto exit;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500430 p_ptr->congested = 1;
Allan Stephens15e979d2010-05-11 14:30:10 +0000431 p_ptr->waiting_pkts = 1 + ((sz - 1) / l_ptr->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100432 list_add_tail(&p_ptr->wait_list, &l_ptr->waiting_ports);
433 l_ptr->stats.link_congs++;
434exit:
Per Liden4323add2006-01-18 00:38:21 +0100435 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100436 }
Per Liden4323add2006-01-18 00:38:21 +0100437 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100438 return -ELINKCONG;
439}
440
Per Liden4323add2006-01-18 00:38:21 +0100441void tipc_link_wakeup_ports(struct link *l_ptr, int all)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100442{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500443 struct tipc_port *p_ptr;
444 struct tipc_port *temp_p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100445 int win = l_ptr->queue_limit[0] - l_ptr->out_queue_size;
446
447 if (all)
448 win = 100000;
449 if (win <= 0)
450 return;
Per Liden4323add2006-01-18 00:38:21 +0100451 if (!spin_trylock_bh(&tipc_port_list_lock))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100452 return;
453 if (link_congested(l_ptr))
454 goto exit;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900455 list_for_each_entry_safe(p_ptr, temp_p_ptr, &l_ptr->waiting_ports,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100456 wait_list) {
457 if (win <= 0)
458 break;
459 list_del_init(&p_ptr->wait_list);
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500460 spin_lock_bh(p_ptr->lock);
461 p_ptr->congested = 0;
462 p_ptr->wakeup(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100463 win -= p_ptr->waiting_pkts;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500464 spin_unlock_bh(p_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100465 }
466
467exit:
Per Liden4323add2006-01-18 00:38:21 +0100468 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100469}
470
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900471/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100472 * link_release_outqueue - purge link's outbound message queue
473 * @l_ptr: pointer to link
474 */
475
476static void link_release_outqueue(struct link *l_ptr)
477{
478 struct sk_buff *buf = l_ptr->first_out;
479 struct sk_buff *next;
480
481 while (buf) {
482 next = buf->next;
483 buf_discard(buf);
484 buf = next;
485 }
486 l_ptr->first_out = NULL;
487 l_ptr->out_queue_size = 0;
488}
489
490/**
Per Liden4323add2006-01-18 00:38:21 +0100491 * tipc_link_reset_fragments - purge link's inbound message fragments queue
Per Lidenb97bf3f2006-01-02 19:04:38 +0100492 * @l_ptr: pointer to link
493 */
494
Per Liden4323add2006-01-18 00:38:21 +0100495void tipc_link_reset_fragments(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100496{
497 struct sk_buff *buf = l_ptr->defragm_buf;
498 struct sk_buff *next;
499
500 while (buf) {
501 next = buf->next;
502 buf_discard(buf);
503 buf = next;
504 }
505 l_ptr->defragm_buf = NULL;
506}
507
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900508/**
Per Liden4323add2006-01-18 00:38:21 +0100509 * tipc_link_stop - purge all inbound and outbound messages associated with link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100510 * @l_ptr: pointer to link
511 */
512
Per Liden4323add2006-01-18 00:38:21 +0100513void tipc_link_stop(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100514{
515 struct sk_buff *buf;
516 struct sk_buff *next;
517
518 buf = l_ptr->oldest_deferred_in;
519 while (buf) {
520 next = buf->next;
521 buf_discard(buf);
522 buf = next;
523 }
524
525 buf = l_ptr->first_out;
526 while (buf) {
527 next = buf->next;
528 buf_discard(buf);
529 buf = next;
530 }
531
Per Liden4323add2006-01-18 00:38:21 +0100532 tipc_link_reset_fragments(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100533
534 buf_discard(l_ptr->proto_msg_queue);
535 l_ptr->proto_msg_queue = NULL;
536}
537
Per Lidenb97bf3f2006-01-02 19:04:38 +0100538/* LINK EVENT CODE IS NOT SUPPORTED AT PRESENT */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100539#define link_send_event(fcn, l_ptr, up) do { } while (0)
540
Per Liden4323add2006-01-18 00:38:21 +0100541void tipc_link_reset(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100542{
543 struct sk_buff *buf;
544 u32 prev_state = l_ptr->state;
545 u32 checkpoint = l_ptr->next_in_no;
Allan Stephens5392d642006-06-25 23:52:50 -0700546 int was_active_link = tipc_link_is_active(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900547
Allan Stephensa686e682008-06-04 17:29:39 -0700548 msg_set_session(l_ptr->pmsg, ((msg_session(l_ptr->pmsg) + 1) & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100549
Allan Stephensa686e682008-06-04 17:29:39 -0700550 /* Link is down, accept any session */
551 l_ptr->peer_session = INVALID_SESSION;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100552
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900553 /* Prepare for max packet size negotiation */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100554 link_init_max_pkt(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900555
Per Lidenb97bf3f2006-01-02 19:04:38 +0100556 l_ptr->state = RESET_UNKNOWN;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100557
558 if ((prev_state == RESET_UNKNOWN) || (prev_state == RESET_RESET))
559 return;
560
Per Liden4323add2006-01-18 00:38:21 +0100561 tipc_node_link_down(l_ptr->owner, l_ptr);
562 tipc_bearer_remove_dest(l_ptr->b_ptr, l_ptr->addr);
Paul Gortmaker7368ddf2010-10-12 14:25:58 +0000563
Paul Gortmaker8f19afb2011-02-28 11:36:21 -0400564 if (was_active_link && tipc_node_active_links(l_ptr->owner) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100565 l_ptr->owner->permit_changeover) {
566 l_ptr->reset_checkpoint = checkpoint;
567 l_ptr->exp_msg_count = START_CHANGEOVER;
568 }
569
570 /* Clean up all queues: */
571
572 link_release_outqueue(l_ptr);
573 buf_discard(l_ptr->proto_msg_queue);
574 l_ptr->proto_msg_queue = NULL;
575 buf = l_ptr->oldest_deferred_in;
576 while (buf) {
577 struct sk_buff *next = buf->next;
578 buf_discard(buf);
579 buf = next;
580 }
581 if (!list_empty(&l_ptr->waiting_ports))
Per Liden4323add2006-01-18 00:38:21 +0100582 tipc_link_wakeup_ports(l_ptr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100583
584 l_ptr->retransm_queue_head = 0;
585 l_ptr->retransm_queue_size = 0;
586 l_ptr->last_out = NULL;
587 l_ptr->first_out = NULL;
588 l_ptr->next_out = NULL;
589 l_ptr->unacked_window = 0;
590 l_ptr->checkpoint = 1;
591 l_ptr->next_out_no = 1;
592 l_ptr->deferred_inqueue_sz = 0;
593 l_ptr->oldest_deferred_in = NULL;
594 l_ptr->newest_deferred_in = NULL;
595 l_ptr->fsm_msg_cnt = 0;
596 l_ptr->stale_count = 0;
597 link_reset_statistics(l_ptr);
598
Per Liden4323add2006-01-18 00:38:21 +0100599 link_send_event(tipc_cfg_link_event, l_ptr, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100600 if (!in_own_cluster(l_ptr->addr))
Per Liden4323add2006-01-18 00:38:21 +0100601 link_send_event(tipc_disc_link_event, l_ptr, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100602}
603
604
605static void link_activate(struct link *l_ptr)
606{
Allan Stephens5392d642006-06-25 23:52:50 -0700607 l_ptr->next_in_no = l_ptr->stats.recv_info = 1;
Per Liden4323add2006-01-18 00:38:21 +0100608 tipc_node_link_up(l_ptr->owner, l_ptr);
609 tipc_bearer_add_dest(l_ptr->b_ptr, l_ptr->addr);
610 link_send_event(tipc_cfg_link_event, l_ptr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100611 if (!in_own_cluster(l_ptr->addr))
Per Liden4323add2006-01-18 00:38:21 +0100612 link_send_event(tipc_disc_link_event, l_ptr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100613}
614
615/**
616 * link_state_event - link finite state machine
617 * @l_ptr: pointer to link
618 * @event: state machine event to process
619 */
620
621static void link_state_event(struct link *l_ptr, unsigned event)
622{
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900623 struct link *other;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100624 u32 cont_intv = l_ptr->continuity_interval;
625
626 if (!l_ptr->started && (event != STARTING_EVT))
627 return; /* Not yet. */
628
629 if (link_blocked(l_ptr)) {
Allan Stephensa0168922010-12-31 18:59:35 +0000630 if (event == TIMEOUT_EVT)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100631 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100632 return; /* Changeover going on */
633 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100634
635 switch (l_ptr->state) {
636 case WORKING_WORKING:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100637 switch (event) {
638 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100639 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100640 break;
641 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100642 if (l_ptr->next_in_no != l_ptr->checkpoint) {
643 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100644 if (tipc_bclink_acks_missing(l_ptr->owner)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900645 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100646 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100647 l_ptr->fsm_msg_cnt++;
648 } else if (l_ptr->max_pkt < l_ptr->max_pkt_target) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900649 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100650 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100651 l_ptr->fsm_msg_cnt++;
652 }
653 link_set_timer(l_ptr, cont_intv);
654 break;
655 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100656 l_ptr->state = WORKING_UNKNOWN;
657 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100658 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100659 l_ptr->fsm_msg_cnt++;
660 link_set_timer(l_ptr, cont_intv / 4);
661 break;
662 case RESET_MSG:
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900663 info("Resetting link <%s>, requested by peer\n",
Allan Stephensa10bd922006-06-25 23:52:17 -0700664 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100665 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100666 l_ptr->state = RESET_RESET;
667 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100668 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100669 l_ptr->fsm_msg_cnt++;
670 link_set_timer(l_ptr, cont_intv);
671 break;
672 default:
673 err("Unknown link event %u in WW state\n", event);
674 }
675 break;
676 case WORKING_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100677 switch (event) {
678 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100679 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100680 l_ptr->state = WORKING_WORKING;
681 l_ptr->fsm_msg_cnt = 0;
682 link_set_timer(l_ptr, cont_intv);
683 break;
684 case RESET_MSG:
Allan Stephensa10bd922006-06-25 23:52:17 -0700685 info("Resetting link <%s>, requested by peer "
686 "while probing\n", l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100687 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100688 l_ptr->state = RESET_RESET;
689 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100690 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100691 l_ptr->fsm_msg_cnt++;
692 link_set_timer(l_ptr, cont_intv);
693 break;
694 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100695 if (l_ptr->next_in_no != l_ptr->checkpoint) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100696 l_ptr->state = WORKING_WORKING;
697 l_ptr->fsm_msg_cnt = 0;
698 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100699 if (tipc_bclink_acks_missing(l_ptr->owner)) {
700 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
701 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100702 l_ptr->fsm_msg_cnt++;
703 }
704 link_set_timer(l_ptr, cont_intv);
705 } else if (l_ptr->fsm_msg_cnt < l_ptr->abort_limit) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900706 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100707 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100708 l_ptr->fsm_msg_cnt++;
709 link_set_timer(l_ptr, cont_intv / 4);
710 } else { /* Link has failed */
Allan Stephensa10bd922006-06-25 23:52:17 -0700711 warn("Resetting link <%s>, peer not responding\n",
712 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100713 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100714 l_ptr->state = RESET_UNKNOWN;
715 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100716 tipc_link_send_proto_msg(l_ptr, RESET_MSG,
717 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100718 l_ptr->fsm_msg_cnt++;
719 link_set_timer(l_ptr, cont_intv);
720 }
721 break;
722 default:
723 err("Unknown link event %u in WU state\n", event);
724 }
725 break;
726 case RESET_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100727 switch (event) {
728 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100729 break;
730 case ACTIVATE_MSG:
731 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000732 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100733 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100734 l_ptr->state = WORKING_WORKING;
735 l_ptr->fsm_msg_cnt = 0;
736 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100737 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100738 l_ptr->fsm_msg_cnt++;
739 link_set_timer(l_ptr, cont_intv);
740 break;
741 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100742 l_ptr->state = RESET_RESET;
743 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100744 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100745 l_ptr->fsm_msg_cnt++;
746 link_set_timer(l_ptr, cont_intv);
747 break;
748 case STARTING_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100749 l_ptr->started = 1;
750 /* fall through */
751 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100752 tipc_link_send_proto_msg(l_ptr, RESET_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100753 l_ptr->fsm_msg_cnt++;
754 link_set_timer(l_ptr, cont_intv);
755 break;
756 default:
757 err("Unknown link event %u in RU state\n", event);
758 }
759 break;
760 case RESET_RESET:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100761 switch (event) {
762 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100763 case ACTIVATE_MSG:
764 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000765 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100766 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100767 l_ptr->state = WORKING_WORKING;
768 l_ptr->fsm_msg_cnt = 0;
769 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100770 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100771 l_ptr->fsm_msg_cnt++;
772 link_set_timer(l_ptr, cont_intv);
773 break;
774 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100775 break;
776 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100777 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100778 l_ptr->fsm_msg_cnt++;
779 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100780 break;
781 default:
782 err("Unknown link event %u in RR state\n", event);
783 }
784 break;
785 default:
786 err("Unknown link state %u/%u\n", l_ptr->state, event);
787 }
788}
789
790/*
791 * link_bundle_buf(): Append contents of a buffer to
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900792 * the tail of an existing one.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100793 */
794
795static int link_bundle_buf(struct link *l_ptr,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900796 struct sk_buff *bundler,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100797 struct sk_buff *buf)
798{
799 struct tipc_msg *bundler_msg = buf_msg(bundler);
800 struct tipc_msg *msg = buf_msg(buf);
801 u32 size = msg_size(msg);
Allan Stephense49060c2006-06-29 12:32:46 -0700802 u32 bundle_size = msg_size(bundler_msg);
803 u32 to_pos = align(bundle_size);
804 u32 pad = to_pos - bundle_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100805
806 if (msg_user(bundler_msg) != MSG_BUNDLER)
807 return 0;
808 if (msg_type(bundler_msg) != OPEN_MSG)
809 return 0;
Allan Stephense49060c2006-06-29 12:32:46 -0700810 if (skb_tailroom(bundler) < (pad + size))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100811 return 0;
Allan Stephens15e979d2010-05-11 14:30:10 +0000812 if (l_ptr->max_pkt < (to_pos + size))
Allan Stephens863fae62006-07-03 19:39:36 -0700813 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100814
Allan Stephense49060c2006-06-29 12:32:46 -0700815 skb_put(bundler, pad + size);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300816 skb_copy_to_linear_data_offset(bundler, to_pos, buf->data, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100817 msg_set_size(bundler_msg, to_pos + size);
818 msg_set_msgcnt(bundler_msg, msg_msgcnt(bundler_msg) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100819 buf_discard(buf);
820 l_ptr->stats.sent_bundled++;
821 return 1;
822}
823
Sam Ravnborg05790c62006-03-20 22:37:04 -0800824static void link_add_to_outqueue(struct link *l_ptr,
825 struct sk_buff *buf,
826 struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100827{
828 u32 ack = mod(l_ptr->next_in_no - 1);
829 u32 seqno = mod(l_ptr->next_out_no++);
830
831 msg_set_word(msg, 2, ((ack << 16) | seqno));
832 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
833 buf->next = NULL;
834 if (l_ptr->first_out) {
835 l_ptr->last_out->next = buf;
836 l_ptr->last_out = buf;
837 } else
838 l_ptr->first_out = l_ptr->last_out = buf;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500839
Per Lidenb97bf3f2006-01-02 19:04:38 +0100840 l_ptr->out_queue_size++;
Allan Stephens9bd80b62011-01-18 15:02:50 -0500841 if (l_ptr->out_queue_size > l_ptr->stats.max_queue_sz)
842 l_ptr->stats.max_queue_sz = l_ptr->out_queue_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100843}
844
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900845/*
846 * tipc_link_send_buf() is the 'full path' for messages, called from
Per Lidenb97bf3f2006-01-02 19:04:38 +0100847 * inside TIPC when the 'fast path' in tipc_send_buf
848 * has failed, and from link_send()
849 */
850
Per Liden4323add2006-01-18 00:38:21 +0100851int tipc_link_send_buf(struct link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100852{
853 struct tipc_msg *msg = buf_msg(buf);
854 u32 size = msg_size(msg);
855 u32 dsz = msg_data_sz(msg);
856 u32 queue_size = l_ptr->out_queue_size;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000857 u32 imp = tipc_msg_tot_importance(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100858 u32 queue_limit = l_ptr->queue_limit[imp];
Allan Stephens15e979d2010-05-11 14:30:10 +0000859 u32 max_packet = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100860
861 msg_set_prevnode(msg, tipc_own_addr); /* If routed message */
862
863 /* Match msg importance against queue limits: */
864
865 if (unlikely(queue_size >= queue_limit)) {
866 if (imp <= TIPC_CRITICAL_IMPORTANCE) {
Allan Stephensbebc55a2011-04-19 10:17:58 -0400867 link_schedule_port(l_ptr, msg_origport(msg), size);
868 buf_discard(buf);
869 return -ELINKCONG;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100870 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100871 buf_discard(buf);
872 if (imp > CONN_MANAGER) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700873 warn("Resetting link <%s>, send queue full", l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100874 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100875 }
876 return dsz;
877 }
878
879 /* Fragmentation needed ? */
880
881 if (size > max_packet)
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000882 return link_send_long_buf(l_ptr, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100883
884 /* Packet can be queued or sent: */
885
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900886 if (likely(!tipc_bearer_congested(l_ptr->b_ptr, l_ptr) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100887 !link_congested(l_ptr))) {
888 link_add_to_outqueue(l_ptr, buf, msg);
889
Per Liden4323add2006-01-18 00:38:21 +0100890 if (likely(tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100891 l_ptr->unacked_window = 0;
892 } else {
Per Liden4323add2006-01-18 00:38:21 +0100893 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100894 l_ptr->stats.bearer_congs++;
895 l_ptr->next_out = buf;
896 }
897 return dsz;
898 }
899 /* Congestion: can message be bundled ?: */
900
901 if ((msg_user(msg) != CHANGEOVER_PROTOCOL) &&
902 (msg_user(msg) != MSG_FRAGMENTER)) {
903
904 /* Try adding message to an existing bundle */
905
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900906 if (l_ptr->next_out &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100907 link_bundle_buf(l_ptr, l_ptr->last_out, buf)) {
Per Liden4323add2006-01-18 00:38:21 +0100908 tipc_bearer_resolve_congestion(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100909 return dsz;
910 }
911
912 /* Try creating a new bundle */
913
914 if (size <= max_packet * 2 / 3) {
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000915 struct sk_buff *bundler = tipc_buf_acquire(max_packet);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100916 struct tipc_msg bundler_hdr;
917
918 if (bundler) {
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000919 tipc_msg_init(&bundler_hdr, MSG_BUNDLER, OPEN_MSG,
Allan Stephens75715212008-06-04 17:37:34 -0700920 INT_H_SIZE, l_ptr->addr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300921 skb_copy_to_linear_data(bundler, &bundler_hdr,
922 INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100923 skb_trim(bundler, INT_H_SIZE);
924 link_bundle_buf(l_ptr, bundler, buf);
925 buf = bundler;
926 msg = buf_msg(buf);
927 l_ptr->stats.sent_bundles++;
928 }
929 }
930 }
931 if (!l_ptr->next_out)
932 l_ptr->next_out = buf;
933 link_add_to_outqueue(l_ptr, buf, msg);
Per Liden4323add2006-01-18 00:38:21 +0100934 tipc_bearer_resolve_congestion(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100935 return dsz;
936}
937
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900938/*
939 * tipc_link_send(): same as tipc_link_send_buf(), but the link to use has
Per Lidenb97bf3f2006-01-02 19:04:38 +0100940 * not been selected yet, and the the owner node is not locked
941 * Called by TIPC internal users, e.g. the name distributor
942 */
943
Per Liden4323add2006-01-18 00:38:21 +0100944int tipc_link_send(struct sk_buff *buf, u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100945{
946 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -0700947 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100948 int res = -ELINKCONG;
949
Per Liden4323add2006-01-18 00:38:21 +0100950 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000951 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100952 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +0100953 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100954 l_ptr = n_ptr->active_links[selector & 1];
Allan Stephensa0168922010-12-31 18:59:35 +0000955 if (l_ptr)
Per Liden4323add2006-01-18 00:38:21 +0100956 res = tipc_link_send_buf(l_ptr, buf);
Allan Stephensa0168922010-12-31 18:59:35 +0000957 else
Allan Stephensc33d53b2006-06-25 23:50:30 -0700958 buf_discard(buf);
Per Liden4323add2006-01-18 00:38:21 +0100959 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100960 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100961 buf_discard(buf);
962 }
Per Liden4323add2006-01-18 00:38:21 +0100963 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100964 return res;
965}
966
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900967/*
968 * link_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +0100969 * destination link is known and the header is complete,
970 * inclusive total message length. Very time critical.
971 * Link is locked. Returns user data length.
972 */
973
Sam Ravnborg05790c62006-03-20 22:37:04 -0800974static int link_send_buf_fast(struct link *l_ptr, struct sk_buff *buf,
975 u32 *used_max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100976{
977 struct tipc_msg *msg = buf_msg(buf);
978 int res = msg_data_sz(msg);
979
980 if (likely(!link_congested(l_ptr))) {
Allan Stephens15e979d2010-05-11 14:30:10 +0000981 if (likely(msg_size(msg) <= l_ptr->max_pkt)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100982 if (likely(list_empty(&l_ptr->b_ptr->cong_links))) {
983 link_add_to_outqueue(l_ptr, buf, msg);
Per Liden4323add2006-01-18 00:38:21 +0100984 if (likely(tipc_bearer_send(l_ptr->b_ptr, buf,
985 &l_ptr->media_addr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100986 l_ptr->unacked_window = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100987 return res;
988 }
Per Liden4323add2006-01-18 00:38:21 +0100989 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100990 l_ptr->stats.bearer_congs++;
991 l_ptr->next_out = buf;
992 return res;
993 }
Allan Stephens0e659672010-12-31 18:59:32 +0000994 } else
Allan Stephens15e979d2010-05-11 14:30:10 +0000995 *used_max_pkt = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100996 }
Per Liden4323add2006-01-18 00:38:21 +0100997 return tipc_link_send_buf(l_ptr, buf); /* All other cases */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100998}
999
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001000/*
1001 * tipc_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001002 * destination node is known and the header is complete,
1003 * inclusive total message length.
1004 * Returns user data length.
1005 */
1006int tipc_send_buf_fast(struct sk_buff *buf, u32 destnode)
1007{
1008 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001009 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001010 int res;
1011 u32 selector = msg_origport(buf_msg(buf)) & 1;
1012 u32 dummy;
1013
1014 if (destnode == tipc_own_addr)
Per Liden4323add2006-01-18 00:38:21 +01001015 return tipc_port_recv_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001016
Per Liden4323add2006-01-18 00:38:21 +01001017 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001018 n_ptr = tipc_node_find(destnode);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001019 if (likely(n_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +01001020 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001021 l_ptr = n_ptr->active_links[selector];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001022 if (likely(l_ptr)) {
1023 res = link_send_buf_fast(l_ptr, buf, &dummy);
Per Liden4323add2006-01-18 00:38:21 +01001024 tipc_node_unlock(n_ptr);
1025 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001026 return res;
1027 }
Per Liden4323add2006-01-18 00:38:21 +01001028 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001029 }
Per Liden4323add2006-01-18 00:38:21 +01001030 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001031 res = msg_data_sz(buf_msg(buf));
1032 tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1033 return res;
1034}
1035
1036
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001037/*
1038 * tipc_link_send_sections_fast: Entry for messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001039 * destination processor is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001040 * except for total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001041 * Returns user data length or errno.
1042 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001043int tipc_link_send_sections_fast(struct tipc_port *sender,
Per Liden4323add2006-01-18 00:38:21 +01001044 struct iovec const *msg_sect,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001045 const u32 num_sect,
Per Liden4323add2006-01-18 00:38:21 +01001046 u32 destaddr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001047{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001048 struct tipc_msg *hdr = &sender->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001049 struct link *l_ptr;
1050 struct sk_buff *buf;
David S. Miller6c000552008-09-02 23:38:32 -07001051 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001052 int res;
1053 u32 selector = msg_origport(hdr) & 1;
1054
Per Lidenb97bf3f2006-01-02 19:04:38 +01001055again:
1056 /*
1057 * Try building message using port's max_pkt hint.
1058 * (Must not hold any locks while building message.)
1059 */
1060
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001061 res = tipc_msg_build(hdr, msg_sect, num_sect, sender->max_pkt,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001062 !sender->user_port, &buf);
1063
Per Liden4323add2006-01-18 00:38:21 +01001064 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001065 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001066 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001067 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001068 l_ptr = node->active_links[selector];
1069 if (likely(l_ptr)) {
1070 if (likely(buf)) {
1071 res = link_send_buf_fast(l_ptr, buf,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001072 &sender->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001073exit:
Per Liden4323add2006-01-18 00:38:21 +01001074 tipc_node_unlock(node);
1075 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001076 return res;
1077 }
1078
1079 /* Exit if build request was invalid */
1080
1081 if (unlikely(res < 0))
1082 goto exit;
1083
1084 /* Exit if link (or bearer) is congested */
1085
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001086 if (link_congested(l_ptr) ||
Per Lidenb97bf3f2006-01-02 19:04:38 +01001087 !list_empty(&l_ptr->b_ptr->cong_links)) {
1088 res = link_schedule_port(l_ptr,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001089 sender->ref, res);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001090 goto exit;
1091 }
1092
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001093 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001094 * Message size exceeds max_pkt hint; update hint,
1095 * then re-try fast path or fragment the message
1096 */
1097
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001098 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001099 tipc_node_unlock(node);
1100 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001101
1102
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001103 if ((msg_hdr_sz(hdr) + res) <= sender->max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001104 goto again;
1105
1106 return link_send_sections_long(sender, msg_sect,
1107 num_sect, destaddr);
1108 }
Per Liden4323add2006-01-18 00:38:21 +01001109 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001110 }
Per Liden4323add2006-01-18 00:38:21 +01001111 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001112
1113 /* Couldn't find a link to the destination node */
1114
1115 if (buf)
1116 return tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1117 if (res >= 0)
Per Liden4323add2006-01-18 00:38:21 +01001118 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
1119 TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001120 return res;
1121}
1122
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001123/*
1124 * link_send_sections_long(): Entry for long messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001125 * destination node is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001126 * inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001127 * Link and bearer congestion status have been checked to be ok,
1128 * and are ignored if they change.
1129 *
1130 * Note that fragments do not use the full link MTU so that they won't have
1131 * to undergo refragmentation if link changeover causes them to be sent
1132 * over another link with an additional tunnel header added as prefix.
1133 * (Refragmentation will still occur if the other link has a smaller MTU.)
1134 *
1135 * Returns user data length or errno.
1136 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001137static int link_send_sections_long(struct tipc_port *sender,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001138 struct iovec const *msg_sect,
1139 u32 num_sect,
1140 u32 destaddr)
1141{
1142 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001143 struct tipc_node *node;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001144 struct tipc_msg *hdr = &sender->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001145 u32 dsz = msg_data_sz(hdr);
Allan Stephens0e659672010-12-31 18:59:32 +00001146 u32 max_pkt, fragm_sz, rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001147 struct tipc_msg fragm_hdr;
Allan Stephens0e659672010-12-31 18:59:32 +00001148 struct sk_buff *buf, *buf_chain, *prev;
1149 u32 fragm_crs, fragm_rest, hsz, sect_rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001150 const unchar *sect_crs;
1151 int curr_sect;
1152 u32 fragm_no;
1153
1154again:
1155 fragm_no = 1;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001156 max_pkt = sender->max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001157 /* leave room for tunnel header in case of link changeover */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001158 fragm_sz = max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001159 /* leave room for fragmentation header in each fragment */
1160 rest = dsz;
1161 fragm_crs = 0;
1162 fragm_rest = 0;
1163 sect_rest = 0;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001164 sect_crs = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001165 curr_sect = -1;
1166
1167 /* Prepare reusable fragment header: */
1168
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001169 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07001170 INT_H_SIZE, msg_destnode(hdr));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001171 msg_set_size(&fragm_hdr, max_pkt);
1172 msg_set_fragm_no(&fragm_hdr, 1);
1173
1174 /* Prepare header of first fragment: */
1175
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001176 buf_chain = buf = tipc_buf_acquire(max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001177 if (!buf)
1178 return -ENOMEM;
1179 buf->next = NULL;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001180 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001181 hsz = msg_hdr_sz(hdr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001182 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, hdr, hsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001183
1184 /* Chop up message: */
1185
1186 fragm_crs = INT_H_SIZE + hsz;
1187 fragm_rest = fragm_sz - hsz;
1188
1189 do { /* For all sections */
1190 u32 sz;
1191
1192 if (!sect_rest) {
1193 sect_rest = msg_sect[++curr_sect].iov_len;
1194 sect_crs = (const unchar *)msg_sect[curr_sect].iov_base;
1195 }
1196
1197 if (sect_rest < fragm_rest)
1198 sz = sect_rest;
1199 else
1200 sz = fragm_rest;
1201
1202 if (likely(!sender->user_port)) {
1203 if (copy_from_user(buf->data + fragm_crs, sect_crs, sz)) {
1204error:
1205 for (; buf_chain; buf_chain = buf) {
1206 buf = buf_chain->next;
1207 buf_discard(buf_chain);
1208 }
1209 return -EFAULT;
1210 }
1211 } else
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001212 skb_copy_to_linear_data_offset(buf, fragm_crs,
1213 sect_crs, sz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001214 sect_crs += sz;
1215 sect_rest -= sz;
1216 fragm_crs += sz;
1217 fragm_rest -= sz;
1218 rest -= sz;
1219
1220 if (!fragm_rest && rest) {
1221
1222 /* Initiate new fragment: */
1223 if (rest <= fragm_sz) {
1224 fragm_sz = rest;
Allan Stephens0e659672010-12-31 18:59:32 +00001225 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001226 } else {
1227 msg_set_type(&fragm_hdr, FRAGMENT);
1228 }
1229 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
1230 msg_set_fragm_no(&fragm_hdr, ++fragm_no);
1231 prev = buf;
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001232 buf = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001233 if (!buf)
1234 goto error;
1235
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001236 buf->next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001237 prev->next = buf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001238 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001239 fragm_crs = INT_H_SIZE;
1240 fragm_rest = fragm_sz;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001241 }
Allan Stephens0e659672010-12-31 18:59:32 +00001242 } while (rest > 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001243
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001244 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001245 * Now we have a buffer chain. Select a link and check
1246 * that packet size is still OK
1247 */
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001248 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001249 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001250 tipc_node_lock(node);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001251 l_ptr = node->active_links[sender->ref & 1];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001252 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01001253 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001254 goto reject;
1255 }
Allan Stephens15e979d2010-05-11 14:30:10 +00001256 if (l_ptr->max_pkt < max_pkt) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001257 sender->max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001258 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001259 for (; buf_chain; buf_chain = buf) {
1260 buf = buf_chain->next;
1261 buf_discard(buf_chain);
1262 }
1263 goto again;
1264 }
1265 } else {
1266reject:
1267 for (; buf_chain; buf_chain = buf) {
1268 buf = buf_chain->next;
1269 buf_discard(buf_chain);
1270 }
Per Liden4323add2006-01-18 00:38:21 +01001271 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
1272 TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001273 }
1274
1275 /* Append whole chain to send queue: */
1276
1277 buf = buf_chain;
Allan Stephense0f08592011-04-17 11:44:24 -04001278 l_ptr->long_msg_seq_no++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001279 if (!l_ptr->next_out)
1280 l_ptr->next_out = buf_chain;
1281 l_ptr->stats.sent_fragmented++;
1282 while (buf) {
1283 struct sk_buff *next = buf->next;
1284 struct tipc_msg *msg = buf_msg(buf);
1285
1286 l_ptr->stats.sent_fragments++;
1287 msg_set_long_msgno(msg, l_ptr->long_msg_seq_no);
1288 link_add_to_outqueue(l_ptr, buf, msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001289 buf = next;
1290 }
1291
1292 /* Send it, if possible: */
1293
Per Liden4323add2006-01-18 00:38:21 +01001294 tipc_link_push_queue(l_ptr);
1295 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001296 return dsz;
1297}
1298
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001299/*
Per Liden4323add2006-01-18 00:38:21 +01001300 * tipc_link_push_packet: Push one unsent packet to the media
Per Lidenb97bf3f2006-01-02 19:04:38 +01001301 */
Per Liden4323add2006-01-18 00:38:21 +01001302u32 tipc_link_push_packet(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001303{
1304 struct sk_buff *buf = l_ptr->first_out;
1305 u32 r_q_size = l_ptr->retransm_queue_size;
1306 u32 r_q_head = l_ptr->retransm_queue_head;
1307
1308 /* Step to position where retransmission failed, if any, */
1309 /* consider that buffers may have been released in meantime */
1310
1311 if (r_q_size && buf) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001312 u32 last = lesser(mod(r_q_head + r_q_size),
Per Lidenb97bf3f2006-01-02 19:04:38 +01001313 link_last_sent(l_ptr));
1314 u32 first = msg_seqno(buf_msg(buf));
1315
1316 while (buf && less(first, r_q_head)) {
1317 first = mod(first + 1);
1318 buf = buf->next;
1319 }
1320 l_ptr->retransm_queue_head = r_q_head = first;
1321 l_ptr->retransm_queue_size = r_q_size = mod(last - first);
1322 }
1323
1324 /* Continue retransmission now, if there is anything: */
1325
Neil Hormanca509102010-03-15 07:58:45 +00001326 if (r_q_size && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001327 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001328 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001329 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001330 l_ptr->retransm_queue_head = mod(++r_q_head);
1331 l_ptr->retransm_queue_size = --r_q_size;
1332 l_ptr->stats.retransmitted++;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001333 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001334 } else {
1335 l_ptr->stats.bearer_congs++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001336 return PUSH_FAILED;
1337 }
1338 }
1339
1340 /* Send deferred protocol message, if any: */
1341
1342 buf = l_ptr->proto_msg_queue;
1343 if (buf) {
1344 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
Allan Stephens0e659672010-12-31 18:59:32 +00001345 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001346 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001347 l_ptr->unacked_window = 0;
1348 buf_discard(buf);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001349 l_ptr->proto_msg_queue = NULL;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001350 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001351 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001352 l_ptr->stats.bearer_congs++;
1353 return PUSH_FAILED;
1354 }
1355 }
1356
1357 /* Send one deferred data message, if send window not full: */
1358
1359 buf = l_ptr->next_out;
1360 if (buf) {
1361 struct tipc_msg *msg = buf_msg(buf);
1362 u32 next = msg_seqno(msg);
1363 u32 first = msg_seqno(buf_msg(l_ptr->first_out));
1364
1365 if (mod(next - first) < l_ptr->queue_limit[0]) {
1366 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001367 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001368 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001369 if (msg_user(msg) == MSG_BUNDLER)
1370 msg_set_type(msg, CLOSED_MSG);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001371 l_ptr->next_out = buf->next;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001372 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001373 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001374 l_ptr->stats.bearer_congs++;
1375 return PUSH_FAILED;
1376 }
1377 }
1378 }
1379 return PUSH_FINISHED;
1380}
1381
1382/*
1383 * push_queue(): push out the unsent messages of a link where
1384 * congestion has abated. Node is locked
1385 */
Per Liden4323add2006-01-18 00:38:21 +01001386void tipc_link_push_queue(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001387{
1388 u32 res;
1389
Per Liden4323add2006-01-18 00:38:21 +01001390 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001391 return;
1392
1393 do {
Per Liden4323add2006-01-18 00:38:21 +01001394 res = tipc_link_push_packet(l_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001395 } while (!res);
1396
Per Lidenb97bf3f2006-01-02 19:04:38 +01001397 if (res == PUSH_FAILED)
Per Liden4323add2006-01-18 00:38:21 +01001398 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001399}
1400
Allan Stephensd356eeb2006-06-25 23:40:01 -07001401static void link_reset_all(unsigned long addr)
1402{
David S. Miller6c000552008-09-02 23:38:32 -07001403 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001404 char addr_string[16];
1405 u32 i;
1406
1407 read_lock_bh(&tipc_net_lock);
1408 n_ptr = tipc_node_find((u32)addr);
1409 if (!n_ptr) {
1410 read_unlock_bh(&tipc_net_lock);
1411 return; /* node no longer exists */
1412 }
1413
1414 tipc_node_lock(n_ptr);
1415
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001416 warn("Resetting all links to %s\n",
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001417 tipc_addr_string_fill(addr_string, n_ptr->addr));
Allan Stephensd356eeb2006-06-25 23:40:01 -07001418
1419 for (i = 0; i < MAX_BEARERS; i++) {
1420 if (n_ptr->links[i]) {
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001421 link_print(n_ptr->links[i], "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001422 tipc_link_reset(n_ptr->links[i]);
1423 }
1424 }
1425
1426 tipc_node_unlock(n_ptr);
1427 read_unlock_bh(&tipc_net_lock);
1428}
1429
1430static void link_retransmit_failure(struct link *l_ptr, struct sk_buff *buf)
1431{
1432 struct tipc_msg *msg = buf_msg(buf);
1433
1434 warn("Retransmission failure on link <%s>\n", l_ptr->name);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001435
1436 if (l_ptr->addr) {
1437
1438 /* Handle failure on standard link */
1439
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001440 link_print(l_ptr, "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001441 tipc_link_reset(l_ptr);
1442
1443 } else {
1444
1445 /* Handle failure on broadcast link */
1446
David S. Miller6c000552008-09-02 23:38:32 -07001447 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001448 char addr_string[16];
1449
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001450 info("Msg seq number: %u, ", msg_seqno(msg));
1451 info("Outstanding acks: %lu\n",
1452 (unsigned long) TIPC_SKB_CB(buf)->handle);
Jeff Garzik617dbea2006-10-03 16:25:34 -07001453
Allan Stephens01d83ed2011-01-18 13:53:16 -05001454 n_ptr = tipc_bclink_retransmit_to();
Allan Stephensd356eeb2006-06-25 23:40:01 -07001455 tipc_node_lock(n_ptr);
1456
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001457 tipc_addr_string_fill(addr_string, n_ptr->addr);
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001458 info("Multicast link info for %s\n", addr_string);
1459 info("Supported: %d, ", n_ptr->bclink.supported);
1460 info("Acked: %u\n", n_ptr->bclink.acked);
1461 info("Last in: %u, ", n_ptr->bclink.last_in);
1462 info("Gap after: %u, ", n_ptr->bclink.gap_after);
1463 info("Gap to: %u\n", n_ptr->bclink.gap_to);
1464 info("Nack sync: %u\n\n", n_ptr->bclink.nack_sync);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001465
1466 tipc_k_signal((Handler)link_reset_all, (unsigned long)n_ptr->addr);
1467
1468 tipc_node_unlock(n_ptr);
1469
1470 l_ptr->stale_count = 0;
1471 }
1472}
1473
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001474void tipc_link_retransmit(struct link *l_ptr, struct sk_buff *buf,
Per Liden4323add2006-01-18 00:38:21 +01001475 u32 retransmits)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001476{
1477 struct tipc_msg *msg;
1478
Allan Stephensd356eeb2006-06-25 23:40:01 -07001479 if (!buf)
1480 return;
1481
1482 msg = buf_msg(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001483
Allan Stephensd356eeb2006-06-25 23:40:01 -07001484 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr)) {
Neil Hormanca509102010-03-15 07:58:45 +00001485 if (l_ptr->retransm_queue_size == 0) {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001486 l_ptr->retransm_queue_head = msg_seqno(msg);
1487 l_ptr->retransm_queue_size = retransmits;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001488 } else {
Neil Hormanca509102010-03-15 07:58:45 +00001489 err("Unexpected retransmit on link %s (qsize=%d)\n",
1490 l_ptr->name, l_ptr->retransm_queue_size);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001491 }
Neil Hormanca509102010-03-15 07:58:45 +00001492 return;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001493 } else {
1494 /* Detect repeated retransmit failures on uncongested bearer */
1495
1496 if (l_ptr->last_retransmitted == msg_seqno(msg)) {
1497 if (++l_ptr->stale_count > 100) {
1498 link_retransmit_failure(l_ptr, buf);
1499 return;
1500 }
1501 } else {
1502 l_ptr->last_retransmitted = msg_seqno(msg);
1503 l_ptr->stale_count = 1;
1504 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001505 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001506
Neil Hormanca509102010-03-15 07:58:45 +00001507 while (retransmits && (buf != l_ptr->next_out) && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001508 msg = buf_msg(buf);
1509 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001510 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001511 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001512 buf = buf->next;
1513 retransmits--;
1514 l_ptr->stats.retransmitted++;
1515 } else {
Per Liden4323add2006-01-18 00:38:21 +01001516 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001517 l_ptr->stats.bearer_congs++;
1518 l_ptr->retransm_queue_head = msg_seqno(buf_msg(buf));
1519 l_ptr->retransm_queue_size = retransmits;
1520 return;
1521 }
1522 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001523
Per Lidenb97bf3f2006-01-02 19:04:38 +01001524 l_ptr->retransm_queue_head = l_ptr->retransm_queue_size = 0;
1525}
1526
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001527/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001528 * link_insert_deferred_queue - insert deferred messages back into receive chain
1529 */
1530
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001531static struct sk_buff *link_insert_deferred_queue(struct link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001532 struct sk_buff *buf)
1533{
1534 u32 seq_no;
1535
1536 if (l_ptr->oldest_deferred_in == NULL)
1537 return buf;
1538
1539 seq_no = msg_seqno(buf_msg(l_ptr->oldest_deferred_in));
1540 if (seq_no == mod(l_ptr->next_in_no)) {
1541 l_ptr->newest_deferred_in->next = buf;
1542 buf = l_ptr->oldest_deferred_in;
1543 l_ptr->oldest_deferred_in = NULL;
1544 l_ptr->deferred_inqueue_sz = 0;
1545 }
1546 return buf;
1547}
1548
Allan Stephens85035562008-04-15 19:04:54 -07001549/**
1550 * link_recv_buf_validate - validate basic format of received message
1551 *
1552 * This routine ensures a TIPC message has an acceptable header, and at least
1553 * as much data as the header indicates it should. The routine also ensures
1554 * that the entire message header is stored in the main fragment of the message
1555 * buffer, to simplify future access to message header fields.
1556 *
1557 * Note: Having extra info present in the message header or data areas is OK.
1558 * TIPC will ignore the excess, under the assumption that it is optional info
1559 * introduced by a later release of the protocol.
1560 */
1561
1562static int link_recv_buf_validate(struct sk_buff *buf)
1563{
1564 static u32 min_data_hdr_size[8] = {
1565 SHORT_H_SIZE, MCAST_H_SIZE, LONG_H_SIZE, DIR_MSG_H_SIZE,
1566 MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE
1567 };
1568
1569 struct tipc_msg *msg;
1570 u32 tipc_hdr[2];
1571 u32 size;
1572 u32 hdr_size;
1573 u32 min_hdr_size;
1574
1575 if (unlikely(buf->len < MIN_H_SIZE))
1576 return 0;
1577
1578 msg = skb_header_pointer(buf, 0, sizeof(tipc_hdr), tipc_hdr);
1579 if (msg == NULL)
1580 return 0;
1581
1582 if (unlikely(msg_version(msg) != TIPC_VERSION))
1583 return 0;
1584
1585 size = msg_size(msg);
1586 hdr_size = msg_hdr_sz(msg);
1587 min_hdr_size = msg_isdata(msg) ?
1588 min_data_hdr_size[msg_type(msg)] : INT_H_SIZE;
1589
1590 if (unlikely((hdr_size < min_hdr_size) ||
1591 (size < hdr_size) ||
1592 (buf->len < size) ||
1593 (size - hdr_size > TIPC_MAX_USER_MSG_SIZE)))
1594 return 0;
1595
1596 return pskb_may_pull(buf, hdr_size);
1597}
1598
Allan Stephensb02b69c2010-08-17 11:00:07 +00001599/**
1600 * tipc_recv_msg - process TIPC messages arriving from off-node
1601 * @head: pointer to message buffer chain
1602 * @tb_ptr: pointer to bearer message arrived on
1603 *
1604 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1605 * structure (i.e. cannot be NULL), but bearer can be inactive.
1606 */
1607
Allan Stephens2d627b92011-01-07 13:00:11 -05001608void tipc_recv_msg(struct sk_buff *head, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001609{
Per Liden4323add2006-01-18 00:38:21 +01001610 read_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001611 while (head) {
David S. Miller6c000552008-09-02 23:38:32 -07001612 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001613 struct link *l_ptr;
1614 struct sk_buff *crs;
1615 struct sk_buff *buf = head;
Allan Stephens85035562008-04-15 19:04:54 -07001616 struct tipc_msg *msg;
1617 u32 seq_no;
1618 u32 ackd;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001619 u32 released = 0;
1620 int type;
1621
Per Lidenb97bf3f2006-01-02 19:04:38 +01001622 head = head->next;
Allan Stephens85035562008-04-15 19:04:54 -07001623
Allan Stephensb02b69c2010-08-17 11:00:07 +00001624 /* Ensure bearer is still enabled */
1625
1626 if (unlikely(!b_ptr->active))
1627 goto cont;
1628
Allan Stephens85035562008-04-15 19:04:54 -07001629 /* Ensure message is well-formed */
1630
1631 if (unlikely(!link_recv_buf_validate(buf)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001632 goto cont;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001633
Allan Stephensfe13dda2008-04-15 19:03:23 -07001634 /* Ensure message data is a single contiguous unit */
1635
Allan Stephensa0168922010-12-31 18:59:35 +00001636 if (unlikely(buf_linearize(buf)))
Allan Stephensfe13dda2008-04-15 19:03:23 -07001637 goto cont;
Allan Stephensfe13dda2008-04-15 19:03:23 -07001638
Allan Stephens85035562008-04-15 19:04:54 -07001639 /* Handle arrival of a non-unicast link message */
1640
1641 msg = buf_msg(buf);
1642
Per Lidenb97bf3f2006-01-02 19:04:38 +01001643 if (unlikely(msg_non_seq(msg))) {
Allan Stephens1265a022008-06-04 17:32:35 -07001644 if (msg_user(msg) == LINK_CONFIG)
1645 tipc_disc_recv_msg(buf, b_ptr);
1646 else
1647 tipc_bclink_recv_pkt(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001648 continue;
1649 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001650
Allan Stephens26008242006-06-25 23:39:31 -07001651 if (unlikely(!msg_short(msg) &&
1652 (msg_destnode(msg) != tipc_own_addr)))
1653 goto cont;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001654
Neil Hormande586572010-03-08 12:43:56 -08001655 /* Discard non-routeable messages destined for another node */
1656
1657 if (unlikely(!msg_isdata(msg) &&
1658 (msg_destnode(msg) != tipc_own_addr))) {
1659 if ((msg_user(msg) != CONN_MANAGER) &&
1660 (msg_user(msg) != MSG_FRAGMENTER))
1661 goto cont;
1662 }
1663
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001664 /* Locate neighboring node that sent message */
Allan Stephens85035562008-04-15 19:04:54 -07001665
Per Liden4323add2006-01-18 00:38:21 +01001666 n_ptr = tipc_node_find(msg_prevnode(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001667 if (unlikely(!n_ptr))
1668 goto cont;
Per Liden4323add2006-01-18 00:38:21 +01001669 tipc_node_lock(n_ptr);
Allan Stephens85035562008-04-15 19:04:54 -07001670
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001671 /* Don't talk to neighbor during cleanup after last session */
1672
1673 if (n_ptr->cleanup_required) {
1674 tipc_node_unlock(n_ptr);
1675 goto cont;
1676 }
1677
1678 /* Locate unicast link endpoint that should handle message */
1679
Per Lidenb97bf3f2006-01-02 19:04:38 +01001680 l_ptr = n_ptr->links[b_ptr->identity];
1681 if (unlikely(!l_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +01001682 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001683 goto cont;
1684 }
Allan Stephens85035562008-04-15 19:04:54 -07001685
1686 /* Validate message sequence number info */
1687
1688 seq_no = msg_seqno(msg);
1689 ackd = msg_ack(msg);
1690
1691 /* Release acked messages */
1692
Per Lidenb97bf3f2006-01-02 19:04:38 +01001693 if (less(n_ptr->bclink.acked, msg_bcast_ack(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01001694 if (tipc_node_is_up(n_ptr) && n_ptr->bclink.supported)
1695 tipc_bclink_acknowledge(n_ptr, msg_bcast_ack(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001696 }
1697
1698 crs = l_ptr->first_out;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001699 while ((crs != l_ptr->next_out) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001700 less_eq(msg_seqno(buf_msg(crs)), ackd)) {
1701 struct sk_buff *next = crs->next;
1702
1703 buf_discard(crs);
1704 crs = next;
1705 released++;
1706 }
1707 if (released) {
1708 l_ptr->first_out = crs;
1709 l_ptr->out_queue_size -= released;
1710 }
Allan Stephens85035562008-04-15 19:04:54 -07001711
1712 /* Try sending any messages link endpoint has pending */
1713
Per Lidenb97bf3f2006-01-02 19:04:38 +01001714 if (unlikely(l_ptr->next_out))
Per Liden4323add2006-01-18 00:38:21 +01001715 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001716 if (unlikely(!list_empty(&l_ptr->waiting_ports)))
Per Liden4323add2006-01-18 00:38:21 +01001717 tipc_link_wakeup_ports(l_ptr, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001718 if (unlikely(++l_ptr->unacked_window >= TIPC_MIN_LINK_WIN)) {
1719 l_ptr->stats.sent_acks++;
Per Liden4323add2006-01-18 00:38:21 +01001720 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001721 }
1722
Allan Stephens85035562008-04-15 19:04:54 -07001723 /* Now (finally!) process the incoming message */
1724
Per Lidenb97bf3f2006-01-02 19:04:38 +01001725protocol_check:
1726 if (likely(link_working_working(l_ptr))) {
1727 if (likely(seq_no == mod(l_ptr->next_in_no))) {
1728 l_ptr->next_in_no++;
1729 if (unlikely(l_ptr->oldest_deferred_in))
1730 head = link_insert_deferred_queue(l_ptr,
1731 head);
1732 if (likely(msg_is_dest(msg, tipc_own_addr))) {
1733deliver:
1734 if (likely(msg_isdata(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01001735 tipc_node_unlock(n_ptr);
1736 tipc_port_recv_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001737 continue;
1738 }
1739 switch (msg_user(msg)) {
1740 case MSG_BUNDLER:
1741 l_ptr->stats.recv_bundles++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001742 l_ptr->stats.recv_bundled +=
Per Lidenb97bf3f2006-01-02 19:04:38 +01001743 msg_msgcnt(msg);
Per Liden4323add2006-01-18 00:38:21 +01001744 tipc_node_unlock(n_ptr);
1745 tipc_link_recv_bundle(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001746 continue;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001747 case NAME_DISTRIBUTOR:
Per Liden4323add2006-01-18 00:38:21 +01001748 tipc_node_unlock(n_ptr);
1749 tipc_named_recv(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001750 continue;
1751 case CONN_MANAGER:
Per Liden4323add2006-01-18 00:38:21 +01001752 tipc_node_unlock(n_ptr);
1753 tipc_port_recv_proto_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001754 continue;
1755 case MSG_FRAGMENTER:
1756 l_ptr->stats.recv_fragments++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001757 if (tipc_link_recv_fragment(&l_ptr->defragm_buf,
Per Liden4323add2006-01-18 00:38:21 +01001758 &buf, &msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001759 l_ptr->stats.recv_fragmented++;
1760 goto deliver;
1761 }
1762 break;
1763 case CHANGEOVER_PROTOCOL:
1764 type = msg_type(msg);
Per Liden4323add2006-01-18 00:38:21 +01001765 if (link_recv_changeover_msg(&l_ptr, &buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001766 msg = buf_msg(buf);
1767 seq_no = msg_seqno(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001768 if (type == ORIGINAL_MSG)
1769 goto deliver;
1770 goto protocol_check;
1771 }
1772 break;
Allan Stephens7945c1f2011-03-11 13:09:28 -05001773 default:
1774 buf_discard(buf);
1775 buf = NULL;
1776 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001777 }
1778 }
Per Liden4323add2006-01-18 00:38:21 +01001779 tipc_node_unlock(n_ptr);
1780 tipc_net_route_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001781 continue;
1782 }
1783 link_handle_out_of_seq_msg(l_ptr, buf);
1784 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001785 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001786 continue;
1787 }
1788
1789 if (msg_user(msg) == LINK_PROTOCOL) {
1790 link_recv_proto_msg(l_ptr, buf);
1791 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001792 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001793 continue;
1794 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001795 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1796
1797 if (link_working_working(l_ptr)) {
1798 /* Re-insert in front of queue */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001799 buf->next = head;
1800 head = buf;
Per Liden4323add2006-01-18 00:38:21 +01001801 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001802 continue;
1803 }
Per Liden4323add2006-01-18 00:38:21 +01001804 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001805cont:
1806 buf_discard(buf);
1807 }
Per Liden4323add2006-01-18 00:38:21 +01001808 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001809}
1810
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001811/*
1812 * link_defer_buf(): Sort a received out-of-sequence packet
Per Lidenb97bf3f2006-01-02 19:04:38 +01001813 * into the deferred reception queue.
1814 * Returns the increase of the queue length,i.e. 0 or 1
1815 */
1816
Per Liden4323add2006-01-18 00:38:21 +01001817u32 tipc_link_defer_pkt(struct sk_buff **head,
1818 struct sk_buff **tail,
1819 struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001820{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001821 struct sk_buff *prev = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001822 struct sk_buff *crs = *head;
1823 u32 seq_no = msg_seqno(buf_msg(buf));
1824
1825 buf->next = NULL;
1826
1827 /* Empty queue ? */
1828 if (*head == NULL) {
1829 *head = *tail = buf;
1830 return 1;
1831 }
1832
1833 /* Last ? */
1834 if (less(msg_seqno(buf_msg(*tail)), seq_no)) {
1835 (*tail)->next = buf;
1836 *tail = buf;
1837 return 1;
1838 }
1839
1840 /* Scan through queue and sort it in */
1841 do {
1842 struct tipc_msg *msg = buf_msg(crs);
1843
1844 if (less(seq_no, msg_seqno(msg))) {
1845 buf->next = crs;
1846 if (prev)
1847 prev->next = buf;
1848 else
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001849 *head = buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001850 return 1;
1851 }
Allan Stephensa0168922010-12-31 18:59:35 +00001852 if (seq_no == msg_seqno(msg))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001853 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001854 prev = crs;
1855 crs = crs->next;
Allan Stephens0e659672010-12-31 18:59:32 +00001856 } while (crs);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001857
1858 /* Message is a duplicate of an existing message */
1859
1860 buf_discard(buf);
1861 return 0;
1862}
1863
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001864/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001865 * link_handle_out_of_seq_msg - handle arrival of out-of-sequence packet
1866 */
1867
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001868static void link_handle_out_of_seq_msg(struct link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001869 struct sk_buff *buf)
1870{
1871 u32 seq_no = msg_seqno(buf_msg(buf));
1872
1873 if (likely(msg_user(buf_msg(buf)) == LINK_PROTOCOL)) {
1874 link_recv_proto_msg(l_ptr, buf);
1875 return;
1876 }
1877
Per Lidenb97bf3f2006-01-02 19:04:38 +01001878 /* Record OOS packet arrival (force mismatch on next timeout) */
1879
1880 l_ptr->checkpoint--;
1881
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001882 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001883 * Discard packet if a duplicate; otherwise add it to deferred queue
1884 * and notify peer of gap as per protocol specification
1885 */
1886
1887 if (less(seq_no, mod(l_ptr->next_in_no))) {
1888 l_ptr->stats.duplicates++;
1889 buf_discard(buf);
1890 return;
1891 }
1892
Per Liden4323add2006-01-18 00:38:21 +01001893 if (tipc_link_defer_pkt(&l_ptr->oldest_deferred_in,
1894 &l_ptr->newest_deferred_in, buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001895 l_ptr->deferred_inqueue_sz++;
1896 l_ptr->stats.deferred_recv++;
1897 if ((l_ptr->deferred_inqueue_sz % 16) == 1)
Per Liden4323add2006-01-18 00:38:21 +01001898 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001899 } else
1900 l_ptr->stats.duplicates++;
1901}
1902
1903/*
1904 * Send protocol message to the other endpoint.
1905 */
Per Liden4323add2006-01-18 00:38:21 +01001906void tipc_link_send_proto_msg(struct link *l_ptr, u32 msg_typ, int probe_msg,
1907 u32 gap, u32 tolerance, u32 priority, u32 ack_mtu)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001908{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001909 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001910 struct tipc_msg *msg = l_ptr->pmsg;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001911 u32 msg_size = sizeof(l_ptr->proto_msg);
Allan Stephens75f0aa42011-02-28 15:30:20 -05001912 int r_flag;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001913
1914 if (link_blocked(l_ptr))
1915 return;
1916 msg_set_type(msg, msg_typ);
1917 msg_set_net_plane(msg, l_ptr->b_ptr->net_plane);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001918 msg_set_bcast_ack(msg, mod(l_ptr->owner->bclink.last_in));
Per Liden4323add2006-01-18 00:38:21 +01001919 msg_set_last_bcast(msg, tipc_bclink_get_last_sent());
Per Lidenb97bf3f2006-01-02 19:04:38 +01001920
1921 if (msg_typ == STATE_MSG) {
1922 u32 next_sent = mod(l_ptr->next_out_no);
1923
Per Liden4323add2006-01-18 00:38:21 +01001924 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001925 return;
1926 if (l_ptr->next_out)
1927 next_sent = msg_seqno(buf_msg(l_ptr->next_out));
1928 msg_set_next_sent(msg, next_sent);
1929 if (l_ptr->oldest_deferred_in) {
1930 u32 rec = msg_seqno(buf_msg(l_ptr->oldest_deferred_in));
1931 gap = mod(rec - mod(l_ptr->next_in_no));
1932 }
1933 msg_set_seq_gap(msg, gap);
1934 if (gap)
1935 l_ptr->stats.sent_nacks++;
1936 msg_set_link_tolerance(msg, tolerance);
1937 msg_set_linkprio(msg, priority);
1938 msg_set_max_pkt(msg, ack_mtu);
1939 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
1940 msg_set_probe(msg, probe_msg != 0);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001941 if (probe_msg) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001942 u32 mtu = l_ptr->max_pkt;
1943
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001944 if ((mtu < l_ptr->max_pkt_target) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001945 link_working_working(l_ptr) &&
1946 l_ptr->fsm_msg_cnt) {
1947 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001948 if (l_ptr->max_pkt_probes == 10) {
1949 l_ptr->max_pkt_target = (msg_size - 4);
1950 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001951 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001952 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001953 l_ptr->max_pkt_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001954 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001955
1956 l_ptr->stats.sent_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001957 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001958 l_ptr->stats.sent_states++;
1959 } else { /* RESET_MSG or ACTIVATE_MSG */
1960 msg_set_ack(msg, mod(l_ptr->reset_checkpoint - 1));
1961 msg_set_seq_gap(msg, 0);
1962 msg_set_next_sent(msg, 1);
Allan Stephensf23d9bf2011-01-18 15:15:34 -05001963 msg_set_probe(msg, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001964 msg_set_link_tolerance(msg, l_ptr->tolerance);
1965 msg_set_linkprio(msg, l_ptr->priority);
1966 msg_set_max_pkt(msg, l_ptr->max_pkt_target);
1967 }
1968
Allan Stephens75f0aa42011-02-28 15:30:20 -05001969 r_flag = (l_ptr->owner->working_links > tipc_link_is_up(l_ptr));
1970 msg_set_redundant_link(msg, r_flag);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001971 msg_set_linkprio(msg, l_ptr->priority);
1972
1973 /* Ensure sequence number will not fit : */
1974
1975 msg_set_seqno(msg, mod(l_ptr->next_out_no + (0xffff/2)));
1976
1977 /* Congestion? */
1978
Per Liden4323add2006-01-18 00:38:21 +01001979 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001980 if (!l_ptr->proto_msg_queue) {
1981 l_ptr->proto_msg_queue =
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001982 tipc_buf_acquire(sizeof(l_ptr->proto_msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001983 }
1984 buf = l_ptr->proto_msg_queue;
1985 if (!buf)
1986 return;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001987 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001988 return;
1989 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001990
1991 /* Message can be sent */
1992
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001993 buf = tipc_buf_acquire(msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001994 if (!buf)
1995 return;
1996
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001997 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001998 msg_set_size(buf_msg(buf), msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001999
Per Liden4323add2006-01-18 00:38:21 +01002000 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002001 l_ptr->unacked_window = 0;
2002 buf_discard(buf);
2003 return;
2004 }
2005
2006 /* New congestion */
Per Liden4323add2006-01-18 00:38:21 +01002007 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002008 l_ptr->proto_msg_queue = buf;
2009 l_ptr->stats.bearer_congs++;
2010}
2011
2012/*
2013 * Receive protocol message :
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002014 * Note that network plane id propagates through the network, and may
2015 * change at any time. The node with lowest address rules
Per Lidenb97bf3f2006-01-02 19:04:38 +01002016 */
2017
2018static void link_recv_proto_msg(struct link *l_ptr, struct sk_buff *buf)
2019{
2020 u32 rec_gap = 0;
2021 u32 max_pkt_info;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002022 u32 max_pkt_ack;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002023 u32 msg_tol;
2024 struct tipc_msg *msg = buf_msg(buf);
2025
Per Lidenb97bf3f2006-01-02 19:04:38 +01002026 if (link_blocked(l_ptr))
2027 goto exit;
2028
2029 /* record unnumbered packet arrival (force mismatch on next timeout) */
2030
2031 l_ptr->checkpoint--;
2032
2033 if (l_ptr->b_ptr->net_plane != msg_net_plane(msg))
2034 if (tipc_own_addr > msg_prevnode(msg))
2035 l_ptr->b_ptr->net_plane = msg_net_plane(msg);
2036
2037 l_ptr->owner->permit_changeover = msg_redundant_link(msg);
2038
2039 switch (msg_type(msg)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002040
Per Lidenb97bf3f2006-01-02 19:04:38 +01002041 case RESET_MSG:
Allan Stephensa686e682008-06-04 17:29:39 -07002042 if (!link_working_unknown(l_ptr) &&
2043 (l_ptr->peer_session != INVALID_SESSION)) {
Allan Stephensb29f1422010-12-31 18:59:25 +00002044 if (msg_session(msg) == l_ptr->peer_session)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002045 break; /* duplicate: ignore */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002046 }
2047 /* fall thru' */
2048 case ACTIVATE_MSG:
2049 /* Update link settings according other endpoint's values */
2050
2051 strcpy((strrchr(l_ptr->name, ':') + 1), (char *)msg_data(msg));
2052
Allan Stephens2db99832010-12-31 18:59:33 +00002053 msg_tol = msg_link_tolerance(msg);
2054 if (msg_tol > l_ptr->tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002055 link_set_supervision_props(l_ptr, msg_tol);
2056
2057 if (msg_linkprio(msg) > l_ptr->priority)
2058 l_ptr->priority = msg_linkprio(msg);
2059
2060 max_pkt_info = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002061 if (max_pkt_info) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002062 if (max_pkt_info < l_ptr->max_pkt_target)
2063 l_ptr->max_pkt_target = max_pkt_info;
2064 if (l_ptr->max_pkt > l_ptr->max_pkt_target)
2065 l_ptr->max_pkt = l_ptr->max_pkt_target;
2066 } else {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002067 l_ptr->max_pkt = l_ptr->max_pkt_target;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002068 }
2069 l_ptr->owner->bclink.supported = (max_pkt_info != 0);
2070
2071 link_state_event(l_ptr, msg_type(msg));
2072
2073 l_ptr->peer_session = msg_session(msg);
2074 l_ptr->peer_bearer_id = msg_bearer_id(msg);
2075
2076 /* Synchronize broadcast sequence numbers */
Paul Gortmaker8f19afb2011-02-28 11:36:21 -04002077 if (!tipc_node_redundant_links(l_ptr->owner))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002078 l_ptr->owner->bclink.last_in = mod(msg_last_bcast(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002079 break;
2080 case STATE_MSG:
2081
Allan Stephens2db99832010-12-31 18:59:33 +00002082 msg_tol = msg_link_tolerance(msg);
2083 if (msg_tol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002084 link_set_supervision_props(l_ptr, msg_tol);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002085
2086 if (msg_linkprio(msg) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01002087 (msg_linkprio(msg) != l_ptr->priority)) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002088 warn("Resetting link <%s>, priority change %u->%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002089 l_ptr->name, l_ptr->priority, msg_linkprio(msg));
2090 l_ptr->priority = msg_linkprio(msg);
Per Liden4323add2006-01-18 00:38:21 +01002091 tipc_link_reset(l_ptr); /* Enforce change to take effect */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002092 break;
2093 }
2094 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
2095 l_ptr->stats.recv_states++;
2096 if (link_reset_unknown(l_ptr))
2097 break;
2098
2099 if (less_eq(mod(l_ptr->next_in_no), msg_next_sent(msg))) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002100 rec_gap = mod(msg_next_sent(msg) -
Per Lidenb97bf3f2006-01-02 19:04:38 +01002101 mod(l_ptr->next_in_no));
2102 }
2103
2104 max_pkt_ack = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002105 if (max_pkt_ack > l_ptr->max_pkt) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002106 l_ptr->max_pkt = max_pkt_ack;
2107 l_ptr->max_pkt_probes = 0;
2108 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002109
2110 max_pkt_ack = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002111 if (msg_probe(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002112 l_ptr->stats.recv_probes++;
Allan Stephensa0168922010-12-31 18:59:35 +00002113 if (msg_size(msg) > sizeof(l_ptr->proto_msg))
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002114 max_pkt_ack = msg_size(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002115 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002116
2117 /* Protocol message before retransmits, reduce loss risk */
2118
Per Liden4323add2006-01-18 00:38:21 +01002119 tipc_bclink_check_gap(l_ptr->owner, msg_last_bcast(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002120
2121 if (rec_gap || (msg_probe(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01002122 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
2123 0, rec_gap, 0, 0, max_pkt_ack);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002124 }
2125 if (msg_seq_gap(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002126 l_ptr->stats.recv_nacks++;
Per Liden4323add2006-01-18 00:38:21 +01002127 tipc_link_retransmit(l_ptr, l_ptr->first_out,
2128 msg_seq_gap(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002129 }
2130 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002131 }
2132exit:
2133 buf_discard(buf);
2134}
2135
2136
2137/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002138 * tipc_link_tunnel(): Send one message via a link belonging to
Per Lidenb97bf3f2006-01-02 19:04:38 +01002139 * another bearer. Owner node is locked.
2140 */
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002141static void tipc_link_tunnel(struct link *l_ptr,
2142 struct tipc_msg *tunnel_hdr,
2143 struct tipc_msg *msg,
2144 u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002145{
2146 struct link *tunnel;
2147 struct sk_buff *buf;
2148 u32 length = msg_size(msg);
2149
2150 tunnel = l_ptr->owner->active_links[selector & 1];
Allan Stephens5392d642006-06-25 23:52:50 -07002151 if (!tipc_link_is_up(tunnel)) {
2152 warn("Link changeover error, "
2153 "tunnel link no longer available\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002154 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002155 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002156 msg_set_size(tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002157 buf = tipc_buf_acquire(length + INT_H_SIZE);
Allan Stephens5392d642006-06-25 23:52:50 -07002158 if (!buf) {
2159 warn("Link changeover error, "
2160 "unable to send tunnel msg\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002161 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002162 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002163 skb_copy_to_linear_data(buf, tunnel_hdr, INT_H_SIZE);
2164 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, msg, length);
Per Liden4323add2006-01-18 00:38:21 +01002165 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002166}
2167
2168
2169
2170/*
2171 * changeover(): Send whole message queue via the remaining link
2172 * Owner node is locked.
2173 */
2174
Per Liden4323add2006-01-18 00:38:21 +01002175void tipc_link_changeover(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002176{
2177 u32 msgcount = l_ptr->out_queue_size;
2178 struct sk_buff *crs = l_ptr->first_out;
2179 struct link *tunnel = l_ptr->owner->active_links[0];
Per Lidenb97bf3f2006-01-02 19:04:38 +01002180 struct tipc_msg tunnel_hdr;
Allan Stephens5392d642006-06-25 23:52:50 -07002181 int split_bundles;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002182
2183 if (!tunnel)
2184 return;
2185
Allan Stephens5392d642006-06-25 23:52:50 -07002186 if (!l_ptr->owner->permit_changeover) {
2187 warn("Link changeover error, "
2188 "peer did not permit changeover\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002189 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002190 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002191
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002192 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002193 ORIGINAL_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002194 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2195 msg_set_msgcnt(&tunnel_hdr, msgcount);
Allan Stephensf1310722006-06-25 23:51:37 -07002196
Per Lidenb97bf3f2006-01-02 19:04:38 +01002197 if (!l_ptr->first_out) {
2198 struct sk_buff *buf;
2199
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002200 buf = tipc_buf_acquire(INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002201 if (buf) {
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002202 skb_copy_to_linear_data(buf, &tunnel_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002203 msg_set_size(&tunnel_hdr, INT_H_SIZE);
Per Liden4323add2006-01-18 00:38:21 +01002204 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002205 } else {
Allan Stephensa10bd922006-06-25 23:52:17 -07002206 warn("Link changeover error, "
2207 "unable to send changeover msg\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002208 }
2209 return;
2210 }
Allan Stephensf1310722006-06-25 23:51:37 -07002211
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002212 split_bundles = (l_ptr->owner->active_links[0] !=
Allan Stephens5392d642006-06-25 23:52:50 -07002213 l_ptr->owner->active_links[1]);
2214
Per Lidenb97bf3f2006-01-02 19:04:38 +01002215 while (crs) {
2216 struct tipc_msg *msg = buf_msg(crs);
2217
2218 if ((msg_user(msg) == MSG_BUNDLER) && split_bundles) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002219 struct tipc_msg *m = msg_get_wrapped(msg);
Allan Stephens0e659672010-12-31 18:59:32 +00002220 unchar *pos = (unchar *)m;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002221
Florian Westphald788d802007-08-02 19:28:06 -07002222 msgcount = msg_msgcnt(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002223 while (msgcount--) {
Allan Stephens0e659672010-12-31 18:59:32 +00002224 msg_set_seqno(m, msg_seqno(msg));
Per Liden4323add2006-01-18 00:38:21 +01002225 tipc_link_tunnel(l_ptr, &tunnel_hdr, m,
2226 msg_link_selector(m));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002227 pos += align(msg_size(m));
2228 m = (struct tipc_msg *)pos;
2229 }
2230 } else {
Per Liden4323add2006-01-18 00:38:21 +01002231 tipc_link_tunnel(l_ptr, &tunnel_hdr, msg,
2232 msg_link_selector(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002233 }
2234 crs = crs->next;
2235 }
2236}
2237
Per Liden4323add2006-01-18 00:38:21 +01002238void tipc_link_send_duplicate(struct link *l_ptr, struct link *tunnel)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002239{
2240 struct sk_buff *iter;
2241 struct tipc_msg tunnel_hdr;
2242
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002243 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002244 DUPLICATE_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002245 msg_set_msgcnt(&tunnel_hdr, l_ptr->out_queue_size);
2246 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2247 iter = l_ptr->first_out;
2248 while (iter) {
2249 struct sk_buff *outbuf;
2250 struct tipc_msg *msg = buf_msg(iter);
2251 u32 length = msg_size(msg);
2252
2253 if (msg_user(msg) == MSG_BUNDLER)
2254 msg_set_type(msg, CLOSED_MSG);
2255 msg_set_ack(msg, mod(l_ptr->next_in_no - 1)); /* Update */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002256 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002257 msg_set_size(&tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002258 outbuf = tipc_buf_acquire(length + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002259 if (outbuf == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002260 warn("Link changeover error, "
2261 "unable to send duplicate msg\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002262 return;
2263 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002264 skb_copy_to_linear_data(outbuf, &tunnel_hdr, INT_H_SIZE);
2265 skb_copy_to_linear_data_offset(outbuf, INT_H_SIZE, iter->data,
2266 length);
Per Liden4323add2006-01-18 00:38:21 +01002267 tipc_link_send_buf(tunnel, outbuf);
2268 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002269 return;
2270 iter = iter->next;
2271 }
2272}
2273
2274
2275
2276/**
2277 * buf_extract - extracts embedded TIPC message from another message
2278 * @skb: encapsulating message buffer
2279 * @from_pos: offset to extract from
2280 *
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002281 * Returns a new message buffer containing an embedded message. The
Per Lidenb97bf3f2006-01-02 19:04:38 +01002282 * encapsulating message itself is left unchanged.
2283 */
2284
2285static struct sk_buff *buf_extract(struct sk_buff *skb, u32 from_pos)
2286{
2287 struct tipc_msg *msg = (struct tipc_msg *)(skb->data + from_pos);
2288 u32 size = msg_size(msg);
2289 struct sk_buff *eb;
2290
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002291 eb = tipc_buf_acquire(size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002292 if (eb)
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002293 skb_copy_to_linear_data(eb, msg, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002294 return eb;
2295}
2296
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002297/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01002298 * link_recv_changeover_msg(): Receive tunneled packet sent
2299 * via other link. Node is locked. Return extracted buffer.
2300 */
2301
2302static int link_recv_changeover_msg(struct link **l_ptr,
2303 struct sk_buff **buf)
2304{
2305 struct sk_buff *tunnel_buf = *buf;
2306 struct link *dest_link;
2307 struct tipc_msg *msg;
2308 struct tipc_msg *tunnel_msg = buf_msg(tunnel_buf);
2309 u32 msg_typ = msg_type(tunnel_msg);
2310 u32 msg_count = msg_msgcnt(tunnel_msg);
2311
2312 dest_link = (*l_ptr)->owner->links[msg_bearer_id(tunnel_msg)];
Allan Stephensb29f1422010-12-31 18:59:25 +00002313 if (!dest_link)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002314 goto exit;
Allan Stephensf1310722006-06-25 23:51:37 -07002315 if (dest_link == *l_ptr) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002316 err("Unexpected changeover message on link <%s>\n",
Allan Stephensf1310722006-06-25 23:51:37 -07002317 (*l_ptr)->name);
2318 goto exit;
2319 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002320 *l_ptr = dest_link;
2321 msg = msg_get_wrapped(tunnel_msg);
2322
2323 if (msg_typ == DUPLICATE_MSG) {
Allan Stephensb29f1422010-12-31 18:59:25 +00002324 if (less(msg_seqno(msg), mod(dest_link->next_in_no)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002325 goto exit;
Allan Stephens0e659672010-12-31 18:59:32 +00002326 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002327 if (*buf == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002328 warn("Link changeover error, duplicate msg dropped\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002329 goto exit;
2330 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002331 buf_discard(tunnel_buf);
2332 return 1;
2333 }
2334
2335 /* First original message ?: */
2336
Per Liden4323add2006-01-18 00:38:21 +01002337 if (tipc_link_is_up(dest_link)) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002338 info("Resetting link <%s>, changeover initiated by peer\n",
2339 dest_link->name);
Per Liden4323add2006-01-18 00:38:21 +01002340 tipc_link_reset(dest_link);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002341 dest_link->exp_msg_count = msg_count;
2342 if (!msg_count)
2343 goto exit;
2344 } else if (dest_link->exp_msg_count == START_CHANGEOVER) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002345 dest_link->exp_msg_count = msg_count;
2346 if (!msg_count)
2347 goto exit;
2348 }
2349
2350 /* Receive original message */
2351
2352 if (dest_link->exp_msg_count == 0) {
Allan Stephens5392d642006-06-25 23:52:50 -07002353 warn("Link switchover error, "
2354 "got too many tunnelled messages\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002355 goto exit;
2356 }
2357 dest_link->exp_msg_count--;
2358 if (less(msg_seqno(msg), dest_link->reset_checkpoint)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002359 goto exit;
2360 } else {
2361 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
2362 if (*buf != NULL) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002363 buf_discard(tunnel_buf);
2364 return 1;
2365 } else {
Allan Stephensa10bd922006-06-25 23:52:17 -07002366 warn("Link changeover error, original msg dropped\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002367 }
2368 }
2369exit:
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002370 *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002371 buf_discard(tunnel_buf);
2372 return 0;
2373}
2374
2375/*
2376 * Bundler functionality:
2377 */
Per Liden4323add2006-01-18 00:38:21 +01002378void tipc_link_recv_bundle(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002379{
2380 u32 msgcount = msg_msgcnt(buf_msg(buf));
2381 u32 pos = INT_H_SIZE;
2382 struct sk_buff *obuf;
2383
Per Lidenb97bf3f2006-01-02 19:04:38 +01002384 while (msgcount--) {
2385 obuf = buf_extract(buf, pos);
2386 if (obuf == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002387 warn("Link unable to unbundle message(s)\n");
2388 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002389 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002390 pos += align(msg_size(buf_msg(obuf)));
Per Liden4323add2006-01-18 00:38:21 +01002391 tipc_net_route_msg(obuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002392 }
2393 buf_discard(buf);
2394}
2395
2396/*
2397 * Fragmentation/defragmentation:
2398 */
2399
2400
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002401/*
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002402 * link_send_long_buf: Entry for buffers needing fragmentation.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002403 * The buffer is complete, inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002404 * Returns user data length.
2405 */
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002406static int link_send_long_buf(struct link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002407{
Allan Stephens77561552011-04-17 13:06:23 -04002408 struct sk_buff *buf_chain = NULL;
2409 struct sk_buff *buf_chain_tail = (struct sk_buff *)&buf_chain;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002410 struct tipc_msg *inmsg = buf_msg(buf);
2411 struct tipc_msg fragm_hdr;
2412 u32 insize = msg_size(inmsg);
2413 u32 dsz = msg_data_sz(inmsg);
2414 unchar *crs = buf->data;
2415 u32 rest = insize;
Allan Stephens15e979d2010-05-11 14:30:10 +00002416 u32 pack_sz = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002417 u32 fragm_sz = pack_sz - INT_H_SIZE;
Allan Stephens77561552011-04-17 13:06:23 -04002418 u32 fragm_no = 0;
Allan Stephens9c396a72008-06-04 17:36:58 -07002419 u32 destaddr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002420
2421 if (msg_short(inmsg))
2422 destaddr = l_ptr->addr;
Allan Stephens9c396a72008-06-04 17:36:58 -07002423 else
2424 destaddr = msg_destnode(inmsg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002425
Per Lidenb97bf3f2006-01-02 19:04:38 +01002426 /* Prepare reusable fragment header: */
2427
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002428 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07002429 INT_H_SIZE, destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002430
2431 /* Chop up message: */
2432
2433 while (rest > 0) {
2434 struct sk_buff *fragm;
2435
2436 if (rest <= fragm_sz) {
2437 fragm_sz = rest;
2438 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
2439 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002440 fragm = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002441 if (fragm == NULL) {
Allan Stephens77561552011-04-17 13:06:23 -04002442 buf_discard(buf);
2443 while (buf_chain) {
2444 buf = buf_chain;
2445 buf_chain = buf_chain->next;
2446 buf_discard(buf);
2447 }
2448 return -ENOMEM;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002449 }
2450 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
Allan Stephens77561552011-04-17 13:06:23 -04002451 fragm_no++;
2452 msg_set_fragm_no(&fragm_hdr, fragm_no);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002453 skb_copy_to_linear_data(fragm, &fragm_hdr, INT_H_SIZE);
2454 skb_copy_to_linear_data_offset(fragm, INT_H_SIZE, crs,
2455 fragm_sz);
Allan Stephens77561552011-04-17 13:06:23 -04002456 buf_chain_tail->next = fragm;
2457 buf_chain_tail = fragm;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002458
Per Lidenb97bf3f2006-01-02 19:04:38 +01002459 rest -= fragm_sz;
2460 crs += fragm_sz;
2461 msg_set_type(&fragm_hdr, FRAGMENT);
2462 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002463 buf_discard(buf);
Allan Stephens77561552011-04-17 13:06:23 -04002464
2465 /* Append chain of fragments to send queue & send them */
2466
2467 l_ptr->long_msg_seq_no++;
2468 link_add_chain_to_outqueue(l_ptr, buf_chain, l_ptr->long_msg_seq_no);
2469 l_ptr->stats.sent_fragments += fragm_no;
2470 l_ptr->stats.sent_fragmented++;
2471 tipc_link_push_queue(l_ptr);
2472
Per Lidenb97bf3f2006-01-02 19:04:38 +01002473 return dsz;
2474}
2475
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002476/*
2477 * A pending message being re-assembled must store certain values
2478 * to handle subsequent fragments correctly. The following functions
Per Lidenb97bf3f2006-01-02 19:04:38 +01002479 * help storing these values in unused, available fields in the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002480 * pending message. This makes dynamic memory allocation unnecessary.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002481 */
2482
Sam Ravnborg05790c62006-03-20 22:37:04 -08002483static void set_long_msg_seqno(struct sk_buff *buf, u32 seqno)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002484{
2485 msg_set_seqno(buf_msg(buf), seqno);
2486}
2487
Sam Ravnborg05790c62006-03-20 22:37:04 -08002488static u32 get_fragm_size(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002489{
2490 return msg_ack(buf_msg(buf));
2491}
2492
Sam Ravnborg05790c62006-03-20 22:37:04 -08002493static void set_fragm_size(struct sk_buff *buf, u32 sz)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002494{
2495 msg_set_ack(buf_msg(buf), sz);
2496}
2497
Sam Ravnborg05790c62006-03-20 22:37:04 -08002498static u32 get_expected_frags(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002499{
2500 return msg_bcast_ack(buf_msg(buf));
2501}
2502
Sam Ravnborg05790c62006-03-20 22:37:04 -08002503static void set_expected_frags(struct sk_buff *buf, u32 exp)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002504{
2505 msg_set_bcast_ack(buf_msg(buf), exp);
2506}
2507
Sam Ravnborg05790c62006-03-20 22:37:04 -08002508static u32 get_timer_cnt(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002509{
2510 return msg_reroute_cnt(buf_msg(buf));
2511}
2512
Sam Ravnborg05790c62006-03-20 22:37:04 -08002513static void incr_timer_cnt(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002514{
2515 msg_incr_reroute_cnt(buf_msg(buf));
2516}
2517
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002518/*
2519 * tipc_link_recv_fragment(): Called with node lock on. Returns
Per Lidenb97bf3f2006-01-02 19:04:38 +01002520 * the reassembled buffer if message is complete.
2521 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002522int tipc_link_recv_fragment(struct sk_buff **pending, struct sk_buff **fb,
Per Liden4323add2006-01-18 00:38:21 +01002523 struct tipc_msg **m)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002524{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002525 struct sk_buff *prev = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002526 struct sk_buff *fbuf = *fb;
2527 struct tipc_msg *fragm = buf_msg(fbuf);
2528 struct sk_buff *pbuf = *pending;
2529 u32 long_msg_seq_no = msg_long_msgno(fragm);
2530
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002531 *fb = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002532
2533 /* Is there an incomplete message waiting for this fragment? */
2534
Joe Perchesf64f9e72009-11-29 16:55:45 -08002535 while (pbuf && ((msg_seqno(buf_msg(pbuf)) != long_msg_seq_no) ||
2536 (msg_orignode(fragm) != msg_orignode(buf_msg(pbuf))))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002537 prev = pbuf;
2538 pbuf = pbuf->next;
2539 }
2540
2541 if (!pbuf && (msg_type(fragm) == FIRST_FRAGMENT)) {
2542 struct tipc_msg *imsg = (struct tipc_msg *)msg_data(fragm);
2543 u32 msg_sz = msg_size(imsg);
2544 u32 fragm_sz = msg_data_sz(fragm);
2545 u32 exp_fragm_cnt = msg_sz/fragm_sz + !!(msg_sz % fragm_sz);
2546 u32 max = TIPC_MAX_USER_MSG_SIZE + LONG_H_SIZE;
2547 if (msg_type(imsg) == TIPC_MCAST_MSG)
2548 max = TIPC_MAX_USER_MSG_SIZE + MCAST_H_SIZE;
2549 if (msg_size(imsg) > max) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002550 buf_discard(fbuf);
2551 return 0;
2552 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002553 pbuf = tipc_buf_acquire(msg_size(imsg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002554 if (pbuf != NULL) {
2555 pbuf->next = *pending;
2556 *pending = pbuf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002557 skb_copy_to_linear_data(pbuf, imsg,
2558 msg_data_sz(fragm));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002559 /* Prepare buffer for subsequent fragments. */
2560
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002561 set_long_msg_seqno(pbuf, long_msg_seq_no);
Allan Stephens0e659672010-12-31 18:59:32 +00002562 set_fragm_size(pbuf, fragm_sz);
2563 set_expected_frags(pbuf, exp_fragm_cnt - 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002564 } else {
Allan Stephensa10bd922006-06-25 23:52:17 -07002565 warn("Link unable to reassemble fragmented message\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002566 }
2567 buf_discard(fbuf);
2568 return 0;
2569 } else if (pbuf && (msg_type(fragm) != FIRST_FRAGMENT)) {
2570 u32 dsz = msg_data_sz(fragm);
2571 u32 fsz = get_fragm_size(pbuf);
2572 u32 crs = ((msg_fragm_no(fragm) - 1) * fsz);
2573 u32 exp_frags = get_expected_frags(pbuf) - 1;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002574 skb_copy_to_linear_data_offset(pbuf, crs,
2575 msg_data(fragm), dsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002576 buf_discard(fbuf);
2577
2578 /* Is message complete? */
2579
2580 if (exp_frags == 0) {
2581 if (prev)
2582 prev->next = pbuf->next;
2583 else
2584 *pending = pbuf->next;
2585 msg_reset_reroute_cnt(buf_msg(pbuf));
2586 *fb = pbuf;
2587 *m = buf_msg(pbuf);
2588 return 1;
2589 }
Allan Stephens0e659672010-12-31 18:59:32 +00002590 set_expected_frags(pbuf, exp_frags);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002591 return 0;
2592 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002593 buf_discard(fbuf);
2594 return 0;
2595}
2596
2597/**
2598 * link_check_defragm_bufs - flush stale incoming message fragments
2599 * @l_ptr: pointer to link
2600 */
2601
2602static void link_check_defragm_bufs(struct link *l_ptr)
2603{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002604 struct sk_buff *prev = NULL;
2605 struct sk_buff *next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002606 struct sk_buff *buf = l_ptr->defragm_buf;
2607
2608 if (!buf)
2609 return;
2610 if (!link_working_working(l_ptr))
2611 return;
2612 while (buf) {
2613 u32 cnt = get_timer_cnt(buf);
2614
2615 next = buf->next;
2616 if (cnt < 4) {
2617 incr_timer_cnt(buf);
2618 prev = buf;
2619 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002620 if (prev)
2621 prev->next = buf->next;
2622 else
2623 l_ptr->defragm_buf = buf->next;
2624 buf_discard(buf);
2625 }
2626 buf = next;
2627 }
2628}
2629
2630
2631
2632static void link_set_supervision_props(struct link *l_ptr, u32 tolerance)
2633{
Allan Stephens5413b4c2011-01-18 13:24:55 -05002634 if ((tolerance < TIPC_MIN_LINK_TOL) || (tolerance > TIPC_MAX_LINK_TOL))
2635 return;
2636
Per Lidenb97bf3f2006-01-02 19:04:38 +01002637 l_ptr->tolerance = tolerance;
2638 l_ptr->continuity_interval =
2639 ((tolerance / 4) > 500) ? 500 : tolerance / 4;
2640 l_ptr->abort_limit = tolerance / (l_ptr->continuity_interval / 4);
2641}
2642
2643
Per Liden4323add2006-01-18 00:38:21 +01002644void tipc_link_set_queue_limits(struct link *l_ptr, u32 window)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002645{
2646 /* Data messages from this node, inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002647 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE] = window;
2648 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE] = (window / 3) * 4;
2649 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE] = (window / 3) * 5;
2650 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE] = (window / 3) * 6;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002651 /* Transiting data messages,inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002652 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE + 4] = 300;
2653 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE + 4] = 600;
2654 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE + 4] = 900;
2655 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE + 4] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002656 l_ptr->queue_limit[CONN_MANAGER] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002657 l_ptr->queue_limit[CHANGEOVER_PROTOCOL] = 2500;
2658 l_ptr->queue_limit[NAME_DISTRIBUTOR] = 3000;
2659 /* FRAGMENT and LAST_FRAGMENT packets */
2660 l_ptr->queue_limit[MSG_FRAGMENTER] = 4000;
2661}
2662
2663/**
2664 * link_find_link - locate link by name
2665 * @name - ptr to link name string
2666 * @node - ptr to area to be filled with ptr to associated node
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002667 *
Per Liden4323add2006-01-18 00:38:21 +01002668 * Caller must hold 'tipc_net_lock' to ensure node and bearer are not deleted;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002669 * this also prevents link deletion.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002670 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002671 * Returns pointer to link (or 0 if invalid link name).
2672 */
2673
David S. Miller6c000552008-09-02 23:38:32 -07002674static struct link *link_find_link(const char *name, struct tipc_node **node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002675{
2676 struct link_name link_name_parts;
Allan Stephens2d627b92011-01-07 13:00:11 -05002677 struct tipc_bearer *b_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002678 struct link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002679
2680 if (!link_name_validate(name, &link_name_parts))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002681 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002682
Per Liden4323add2006-01-18 00:38:21 +01002683 b_ptr = tipc_bearer_find_interface(link_name_parts.if_local);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002684 if (!b_ptr)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002685 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002686
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002687 *node = tipc_node_find(link_name_parts.addr_peer);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002688 if (!*node)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002689 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002690
2691 l_ptr = (*node)->links[b_ptr->identity];
2692 if (!l_ptr || strcmp(l_ptr->name, name))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002693 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002694
2695 return l_ptr;
2696}
2697
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002698struct sk_buff *tipc_link_cmd_config(const void *req_tlv_area, int req_tlv_space,
Per Liden4323add2006-01-18 00:38:21 +01002699 u16 cmd)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002700{
2701 struct tipc_link_config *args;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002702 u32 new_value;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002703 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002704 struct tipc_node *node;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002705 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002706
2707 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_CONFIG))
Per Liden4323add2006-01-18 00:38:21 +01002708 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002709
2710 args = (struct tipc_link_config *)TLV_DATA(req_tlv_area);
2711 new_value = ntohl(args->value);
2712
Per Liden4323add2006-01-18 00:38:21 +01002713 if (!strcmp(args->name, tipc_bclink_name)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002714 if ((cmd == TIPC_CMD_SET_LINK_WINDOW) &&
Per Liden4323add2006-01-18 00:38:21 +01002715 (tipc_bclink_set_queue_limits(new_value) == 0))
2716 return tipc_cfg_reply_none();
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002717 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
Per Liden4323add2006-01-18 00:38:21 +01002718 " (cannot change setting on broadcast link)");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002719 }
2720
Per Liden4323add2006-01-18 00:38:21 +01002721 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002722 l_ptr = link_find_link(args->name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002723 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002724 read_unlock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002725 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002726 }
2727
Per Liden4323add2006-01-18 00:38:21 +01002728 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002729 res = -EINVAL;
2730 switch (cmd) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002731 case TIPC_CMD_SET_LINK_TOL:
2732 if ((new_value >= TIPC_MIN_LINK_TOL) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01002733 (new_value <= TIPC_MAX_LINK_TOL)) {
2734 link_set_supervision_props(l_ptr, new_value);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002735 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +01002736 0, 0, new_value, 0, 0);
Allan Stephens0e35fd52008-07-14 22:44:01 -07002737 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002738 }
2739 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002740 case TIPC_CMD_SET_LINK_PRI:
Per Liden16cb4b32006-01-13 22:22:22 +01002741 if ((new_value >= TIPC_MIN_LINK_PRI) &&
2742 (new_value <= TIPC_MAX_LINK_PRI)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002743 l_ptr->priority = new_value;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002744 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +01002745 0, 0, 0, new_value, 0);
Allan Stephens0e35fd52008-07-14 22:44:01 -07002746 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002747 }
2748 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002749 case TIPC_CMD_SET_LINK_WINDOW:
2750 if ((new_value >= TIPC_MIN_LINK_WIN) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01002751 (new_value <= TIPC_MAX_LINK_WIN)) {
Per Liden4323add2006-01-18 00:38:21 +01002752 tipc_link_set_queue_limits(l_ptr, new_value);
Allan Stephens0e35fd52008-07-14 22:44:01 -07002753 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002754 }
2755 break;
2756 }
Per Liden4323add2006-01-18 00:38:21 +01002757 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002758
Per Liden4323add2006-01-18 00:38:21 +01002759 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002760 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002761 return tipc_cfg_reply_error_string("cannot change link setting");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002762
Per Liden4323add2006-01-18 00:38:21 +01002763 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002764}
2765
2766/**
2767 * link_reset_statistics - reset link statistics
2768 * @l_ptr: pointer to link
2769 */
2770
2771static void link_reset_statistics(struct link *l_ptr)
2772{
2773 memset(&l_ptr->stats, 0, sizeof(l_ptr->stats));
2774 l_ptr->stats.sent_info = l_ptr->next_out_no;
2775 l_ptr->stats.recv_info = l_ptr->next_in_no;
2776}
2777
Per Liden4323add2006-01-18 00:38:21 +01002778struct sk_buff *tipc_link_cmd_reset_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002779{
2780 char *link_name;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002781 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002782 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002783
2784 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002785 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002786
2787 link_name = (char *)TLV_DATA(req_tlv_area);
Per Liden4323add2006-01-18 00:38:21 +01002788 if (!strcmp(link_name, tipc_bclink_name)) {
2789 if (tipc_bclink_reset_stats())
2790 return tipc_cfg_reply_error_string("link not found");
2791 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002792 }
2793
Per Liden4323add2006-01-18 00:38:21 +01002794 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002795 l_ptr = link_find_link(link_name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002796 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002797 read_unlock_bh(&tipc_net_lock);
2798 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002799 }
2800
Per Liden4323add2006-01-18 00:38:21 +01002801 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002802 link_reset_statistics(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +01002803 tipc_node_unlock(node);
2804 read_unlock_bh(&tipc_net_lock);
2805 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002806}
2807
2808/**
2809 * percent - convert count to a percentage of total (rounding up or down)
2810 */
2811
2812static u32 percent(u32 count, u32 total)
2813{
2814 return (count * 100 + (total / 2)) / total;
2815}
2816
2817/**
Per Liden4323add2006-01-18 00:38:21 +01002818 * tipc_link_stats - print link statistics
Per Lidenb97bf3f2006-01-02 19:04:38 +01002819 * @name: link name
2820 * @buf: print buffer area
2821 * @buf_size: size of print buffer area
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002822 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002823 * Returns length of print buffer data string (or 0 if error)
2824 */
2825
Per Liden4323add2006-01-18 00:38:21 +01002826static int tipc_link_stats(const char *name, char *buf, const u32 buf_size)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002827{
2828 struct print_buf pb;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002829 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002830 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002831 char *status;
2832 u32 profile_total = 0;
2833
Per Liden4323add2006-01-18 00:38:21 +01002834 if (!strcmp(name, tipc_bclink_name))
2835 return tipc_bclink_stats(buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002836
Per Liden4323add2006-01-18 00:38:21 +01002837 tipc_printbuf_init(&pb, buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002838
Per Liden4323add2006-01-18 00:38:21 +01002839 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002840 l_ptr = link_find_link(name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002841 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002842 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002843 return 0;
2844 }
Per Liden4323add2006-01-18 00:38:21 +01002845 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002846
Per Liden4323add2006-01-18 00:38:21 +01002847 if (tipc_link_is_active(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002848 status = "ACTIVE";
Per Liden4323add2006-01-18 00:38:21 +01002849 else if (tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002850 status = "STANDBY";
2851 else
2852 status = "DEFUNCT";
2853 tipc_printf(&pb, "Link <%s>\n"
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002854 " %s MTU:%u Priority:%u Tolerance:%u ms"
2855 " Window:%u packets\n",
Allan Stephens15e979d2010-05-11 14:30:10 +00002856 l_ptr->name, status, l_ptr->max_pkt,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002857 l_ptr->priority, l_ptr->tolerance, l_ptr->queue_limit[0]);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002858 tipc_printf(&pb, " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002859 l_ptr->next_in_no - l_ptr->stats.recv_info,
2860 l_ptr->stats.recv_fragments,
2861 l_ptr->stats.recv_fragmented,
2862 l_ptr->stats.recv_bundles,
2863 l_ptr->stats.recv_bundled);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002864 tipc_printf(&pb, " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002865 l_ptr->next_out_no - l_ptr->stats.sent_info,
2866 l_ptr->stats.sent_fragments,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002867 l_ptr->stats.sent_fragmented,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002868 l_ptr->stats.sent_bundles,
2869 l_ptr->stats.sent_bundled);
2870 profile_total = l_ptr->stats.msg_length_counts;
2871 if (!profile_total)
2872 profile_total = 1;
2873 tipc_printf(&pb, " TX profile sample:%u packets average:%u octets\n"
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002874 " 0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% "
2875 "-16354:%u%% -32768:%u%% -66000:%u%%\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002876 l_ptr->stats.msg_length_counts,
2877 l_ptr->stats.msg_lengths_total / profile_total,
2878 percent(l_ptr->stats.msg_length_profile[0], profile_total),
2879 percent(l_ptr->stats.msg_length_profile[1], profile_total),
2880 percent(l_ptr->stats.msg_length_profile[2], profile_total),
2881 percent(l_ptr->stats.msg_length_profile[3], profile_total),
2882 percent(l_ptr->stats.msg_length_profile[4], profile_total),
2883 percent(l_ptr->stats.msg_length_profile[5], profile_total),
2884 percent(l_ptr->stats.msg_length_profile[6], profile_total));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002885 tipc_printf(&pb, " RX states:%u probes:%u naks:%u defs:%u dups:%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002886 l_ptr->stats.recv_states,
2887 l_ptr->stats.recv_probes,
2888 l_ptr->stats.recv_nacks,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002889 l_ptr->stats.deferred_recv,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002890 l_ptr->stats.duplicates);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002891 tipc_printf(&pb, " TX states:%u probes:%u naks:%u acks:%u dups:%u\n",
2892 l_ptr->stats.sent_states,
2893 l_ptr->stats.sent_probes,
2894 l_ptr->stats.sent_nacks,
2895 l_ptr->stats.sent_acks,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002896 l_ptr->stats.retransmitted);
2897 tipc_printf(&pb, " Congestion bearer:%u link:%u Send queue max:%u avg:%u\n",
2898 l_ptr->stats.bearer_congs,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002899 l_ptr->stats.link_congs,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002900 l_ptr->stats.max_queue_sz,
2901 l_ptr->stats.queue_sz_counts
2902 ? (l_ptr->stats.accu_queue_sz / l_ptr->stats.queue_sz_counts)
2903 : 0);
2904
Per Liden4323add2006-01-18 00:38:21 +01002905 tipc_node_unlock(node);
2906 read_unlock_bh(&tipc_net_lock);
2907 return tipc_printbuf_validate(&pb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002908}
2909
2910#define MAX_LINK_STATS_INFO 2000
2911
Per Liden4323add2006-01-18 00:38:21 +01002912struct sk_buff *tipc_link_cmd_show_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002913{
2914 struct sk_buff *buf;
2915 struct tlv_desc *rep_tlv;
2916 int str_len;
2917
2918 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002919 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002920
Per Liden4323add2006-01-18 00:38:21 +01002921 buf = tipc_cfg_reply_alloc(TLV_SPACE(MAX_LINK_STATS_INFO));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002922 if (!buf)
2923 return NULL;
2924
2925 rep_tlv = (struct tlv_desc *)buf->data;
2926
Per Liden4323add2006-01-18 00:38:21 +01002927 str_len = tipc_link_stats((char *)TLV_DATA(req_tlv_area),
2928 (char *)TLV_DATA(rep_tlv), MAX_LINK_STATS_INFO);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002929 if (!str_len) {
2930 buf_discard(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002931 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002932 }
2933
2934 skb_put(buf, TLV_SPACE(str_len));
2935 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
2936
2937 return buf;
2938}
2939
Per Lidenb97bf3f2006-01-02 19:04:38 +01002940/**
Per Liden4323add2006-01-18 00:38:21 +01002941 * tipc_link_get_max_pkt - get maximum packet size to use when sending to destination
Per Lidenb97bf3f2006-01-02 19:04:38 +01002942 * @dest: network address of destination node
2943 * @selector: used to select from set of active links
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002944 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002945 * If no active link can be found, uses default maximum packet size.
2946 */
2947
Per Liden4323add2006-01-18 00:38:21 +01002948u32 tipc_link_get_max_pkt(u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002949{
David S. Miller6c000552008-09-02 23:38:32 -07002950 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002951 struct link *l_ptr;
2952 u32 res = MAX_PKT_DEFAULT;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002953
Per Lidenb97bf3f2006-01-02 19:04:38 +01002954 if (dest == tipc_own_addr)
2955 return MAX_MSG_SIZE;
2956
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002957 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00002958 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002959 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002960 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002961 l_ptr = n_ptr->active_links[selector & 1];
2962 if (l_ptr)
Allan Stephens15e979d2010-05-11 14:30:10 +00002963 res = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01002964 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002965 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002966 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002967 return res;
2968}
2969
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002970static void link_print(struct link *l_ptr, const char *str)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002971{
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002972 char print_area[256];
2973 struct print_buf pb;
2974 struct print_buf *buf = &pb;
2975
2976 tipc_printbuf_init(buf, print_area, sizeof(print_area));
2977
Per Lidenb97bf3f2006-01-02 19:04:38 +01002978 tipc_printf(buf, str);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002979 tipc_printf(buf, "Link %x<%s>:",
Allan Stephens2d627b92011-01-07 13:00:11 -05002980 l_ptr->addr, l_ptr->b_ptr->name);
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002981
2982#ifdef CONFIG_TIPC_DEBUG
2983 if (link_reset_reset(l_ptr) || link_reset_unknown(l_ptr))
2984 goto print_state;
2985
Per Lidenb97bf3f2006-01-02 19:04:38 +01002986 tipc_printf(buf, ": NXO(%u):", mod(l_ptr->next_out_no));
2987 tipc_printf(buf, "NXI(%u):", mod(l_ptr->next_in_no));
2988 tipc_printf(buf, "SQUE");
2989 if (l_ptr->first_out) {
2990 tipc_printf(buf, "[%u..", msg_seqno(buf_msg(l_ptr->first_out)));
2991 if (l_ptr->next_out)
2992 tipc_printf(buf, "%u..",
2993 msg_seqno(buf_msg(l_ptr->next_out)));
Allan Stephensb82834e2010-05-11 14:30:04 +00002994 tipc_printf(buf, "%u]", msg_seqno(buf_msg(l_ptr->last_out)));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002995 if ((mod(msg_seqno(buf_msg(l_ptr->last_out)) -
2996 msg_seqno(buf_msg(l_ptr->first_out)))
Joe Perchesf64f9e72009-11-29 16:55:45 -08002997 != (l_ptr->out_queue_size - 1)) ||
2998 (l_ptr->last_out->next != NULL)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002999 tipc_printf(buf, "\nSend queue inconsistency\n");
Allan Stephensc8a61b52011-01-18 13:31:32 -05003000 tipc_printf(buf, "first_out= %p ", l_ptr->first_out);
3001 tipc_printf(buf, "next_out= %p ", l_ptr->next_out);
3002 tipc_printf(buf, "last_out= %p ", l_ptr->last_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003003 }
3004 } else
3005 tipc_printf(buf, "[]");
3006 tipc_printf(buf, "SQSIZ(%u)", l_ptr->out_queue_size);
3007 if (l_ptr->oldest_deferred_in) {
3008 u32 o = msg_seqno(buf_msg(l_ptr->oldest_deferred_in));
3009 u32 n = msg_seqno(buf_msg(l_ptr->newest_deferred_in));
3010 tipc_printf(buf, ":RQUE[%u..%u]", o, n);
3011 if (l_ptr->deferred_inqueue_sz != mod((n + 1) - o)) {
3012 tipc_printf(buf, ":RQSIZ(%u)",
3013 l_ptr->deferred_inqueue_sz);
3014 }
3015 }
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003016print_state:
3017#endif
3018
Per Lidenb97bf3f2006-01-02 19:04:38 +01003019 if (link_working_unknown(l_ptr))
3020 tipc_printf(buf, ":WU");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003021 else if (link_reset_reset(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01003022 tipc_printf(buf, ":RR");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003023 else if (link_reset_unknown(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01003024 tipc_printf(buf, ":RU");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003025 else if (link_working_working(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01003026 tipc_printf(buf, ":WW");
3027 tipc_printf(buf, "\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003028
3029 tipc_printbuf_validate(buf);
3030 info("%s", print_area);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003031}
3032