blob: de9d49108d411ce3a48a6be1d159a3b6fe10ae0a [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
5 * Copyright (c) 2004-2007, 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);
93static int link_send_sections_long(struct port *sender,
94 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
Per Lidenb97bf3f2006-01-02 19:04:38 +0100116 max_pkt = (l_ptr->b_ptr->publ.mtu & ~3);
117 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
249 if (l_ptr->out_queue_size > l_ptr->stats.max_queue_sz)
250 l_ptr->stats.max_queue_sz = l_ptr->out_queue_size;
251
252 if (l_ptr->first_out) {
253 struct tipc_msg *msg = buf_msg(l_ptr->first_out);
254 u32 length = msg_size(msg);
255
Joe Perchesf64f9e72009-11-29 16:55:45 -0800256 if ((msg_user(msg) == MSG_FRAGMENTER) &&
257 (msg_type(msg) == FIRST_FRAGMENT)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100258 length = msg_size(msg_get_wrapped(msg));
259 }
260 if (length) {
261 l_ptr->stats.msg_lengths_total += length;
262 l_ptr->stats.msg_length_counts++;
263 if (length <= 64)
264 l_ptr->stats.msg_length_profile[0]++;
265 else if (length <= 256)
266 l_ptr->stats.msg_length_profile[1]++;
267 else if (length <= 1024)
268 l_ptr->stats.msg_length_profile[2]++;
269 else if (length <= 4096)
270 l_ptr->stats.msg_length_profile[3]++;
271 else if (length <= 16384)
272 l_ptr->stats.msg_length_profile[4]++;
273 else if (length <= 32768)
274 l_ptr->stats.msg_length_profile[5]++;
275 else
276 l_ptr->stats.msg_length_profile[6]++;
277 }
278 }
279
280 /* do all other link processing performed on a periodic basis */
281
282 link_check_defragm_bufs(l_ptr);
283
284 link_state_event(l_ptr, TIMEOUT_EVT);
285
286 if (l_ptr->next_out)
Per Liden4323add2006-01-18 00:38:21 +0100287 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100288
Per Liden4323add2006-01-18 00:38:21 +0100289 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100290}
291
Sam Ravnborg05790c62006-03-20 22:37:04 -0800292static void link_set_timer(struct link *l_ptr, u32 time)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100293{
294 k_start_timer(&l_ptr->timer, time);
295}
296
297/**
Per Liden4323add2006-01-18 00:38:21 +0100298 * tipc_link_create - create a new link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100299 * @b_ptr: pointer to associated bearer
300 * @peer: network address of node at other end of link
301 * @media_addr: media address to use when sending messages over link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900302 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100303 * Returns pointer to link.
304 */
305
Per Liden4323add2006-01-18 00:38:21 +0100306struct link *tipc_link_create(struct bearer *b_ptr, const u32 peer,
307 const struct tipc_media_addr *media_addr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100308{
309 struct link *l_ptr;
310 struct tipc_msg *msg;
311 char *if_name;
312
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700313 l_ptr = kzalloc(sizeof(*l_ptr), GFP_ATOMIC);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100314 if (!l_ptr) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700315 warn("Link creation failed, no memory\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100316 return NULL;
317 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100318
319 l_ptr->addr = peer;
320 if_name = strchr(b_ptr->publ.name, ':') + 1;
321 sprintf(l_ptr->name, "%u.%u.%u:%s-%u.%u.%u:",
322 tipc_zone(tipc_own_addr), tipc_cluster(tipc_own_addr),
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900323 tipc_node(tipc_own_addr),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100324 if_name,
325 tipc_zone(peer), tipc_cluster(peer), tipc_node(peer));
326 /* note: peer i/f is appended to link name by reset/activate */
327 memcpy(&l_ptr->media_addr, media_addr, sizeof(*media_addr));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100328 l_ptr->checkpoint = 1;
329 l_ptr->b_ptr = b_ptr;
330 link_set_supervision_props(l_ptr, b_ptr->media->tolerance);
331 l_ptr->state = RESET_UNKNOWN;
332
333 l_ptr->pmsg = (struct tipc_msg *)&l_ptr->proto_msg;
334 msg = l_ptr->pmsg;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000335 tipc_msg_init(msg, LINK_PROTOCOL, RESET_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100336 msg_set_size(msg, sizeof(l_ptr->proto_msg));
Allan Stephensa686e682008-06-04 17:29:39 -0700337 msg_set_session(msg, (tipc_random & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100338 msg_set_bearer_id(msg, b_ptr->identity);
339 strcpy((char *)msg_data(msg), if_name);
340
341 l_ptr->priority = b_ptr->priority;
Per Liden4323add2006-01-18 00:38:21 +0100342 tipc_link_set_queue_limits(l_ptr, b_ptr->media->window);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100343
344 link_init_max_pkt(l_ptr);
345
346 l_ptr->next_out_no = 1;
347 INIT_LIST_HEAD(&l_ptr->waiting_ports);
348
349 link_reset_statistics(l_ptr);
350
Per Liden4323add2006-01-18 00:38:21 +0100351 l_ptr->owner = tipc_node_attach_link(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100352 if (!l_ptr->owner) {
353 kfree(l_ptr);
354 return NULL;
355 }
356
Florian Westphal945710652007-07-26 00:05:07 -0700357 k_init_timer(&l_ptr->timer, (Handler)link_timeout, (unsigned long)l_ptr);
358 list_add_tail(&l_ptr->link_list, &b_ptr->links);
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000359 tipc_k_signal((Handler)link_start, (unsigned long)l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100360
Per Lidenb97bf3f2006-01-02 19:04:38 +0100361 return l_ptr;
362}
363
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900364/**
Per Liden4323add2006-01-18 00:38:21 +0100365 * tipc_link_delete - delete a link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100366 * @l_ptr: pointer to link
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900367 *
Per Liden4323add2006-01-18 00:38:21 +0100368 * Note: 'tipc_net_lock' is write_locked, bearer is locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100369 * This routine must not grab the node lock until after link timer cancellation
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900370 * to avoid a potential deadlock situation.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100371 */
372
Per Liden4323add2006-01-18 00:38:21 +0100373void tipc_link_delete(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100374{
375 if (!l_ptr) {
376 err("Attempt to delete non-existent link\n");
377 return;
378 }
379
Per Lidenb97bf3f2006-01-02 19:04:38 +0100380 k_cancel_timer(&l_ptr->timer);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900381
Per Liden4323add2006-01-18 00:38:21 +0100382 tipc_node_lock(l_ptr->owner);
383 tipc_link_reset(l_ptr);
384 tipc_node_detach_link(l_ptr->owner, l_ptr);
385 tipc_link_stop(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100386 list_del_init(&l_ptr->link_list);
Per Liden4323add2006-01-18 00:38:21 +0100387 tipc_node_unlock(l_ptr->owner);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100388 k_term_timer(&l_ptr->timer);
389 kfree(l_ptr);
390}
391
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000392static void link_start(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100393{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100394 link_state_event(l_ptr, STARTING_EVT);
395}
396
397/**
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900398 * link_schedule_port - schedule port for deferred sending
Per Lidenb97bf3f2006-01-02 19:04:38 +0100399 * @l_ptr: pointer to link
400 * @origport: reference to sending port
401 * @sz: amount of data to be sent
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900402 *
403 * Schedules port for renewed sending of messages after link congestion
Per Lidenb97bf3f2006-01-02 19:04:38 +0100404 * has abated.
405 */
406
407static int link_schedule_port(struct link *l_ptr, u32 origport, u32 sz)
408{
409 struct port *p_ptr;
410
Per Liden4323add2006-01-18 00:38:21 +0100411 spin_lock_bh(&tipc_port_list_lock);
412 p_ptr = tipc_port_lock(origport);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100413 if (p_ptr) {
414 if (!p_ptr->wakeup)
415 goto exit;
416 if (!list_empty(&p_ptr->wait_list))
417 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100418 p_ptr->publ.congested = 1;
Allan Stephens15e979d2010-05-11 14:30:10 +0000419 p_ptr->waiting_pkts = 1 + ((sz - 1) / l_ptr->max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100420 list_add_tail(&p_ptr->wait_list, &l_ptr->waiting_ports);
421 l_ptr->stats.link_congs++;
422exit:
Per Liden4323add2006-01-18 00:38:21 +0100423 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100424 }
Per Liden4323add2006-01-18 00:38:21 +0100425 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100426 return -ELINKCONG;
427}
428
Per Liden4323add2006-01-18 00:38:21 +0100429void tipc_link_wakeup_ports(struct link *l_ptr, int all)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100430{
431 struct port *p_ptr;
432 struct port *temp_p_ptr;
433 int win = l_ptr->queue_limit[0] - l_ptr->out_queue_size;
434
435 if (all)
436 win = 100000;
437 if (win <= 0)
438 return;
Per Liden4323add2006-01-18 00:38:21 +0100439 if (!spin_trylock_bh(&tipc_port_list_lock))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100440 return;
441 if (link_congested(l_ptr))
442 goto exit;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900443 list_for_each_entry_safe(p_ptr, temp_p_ptr, &l_ptr->waiting_ports,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100444 wait_list) {
445 if (win <= 0)
446 break;
447 list_del_init(&p_ptr->wait_list);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100448 spin_lock_bh(p_ptr->publ.lock);
449 p_ptr->publ.congested = 0;
450 p_ptr->wakeup(&p_ptr->publ);
451 win -= p_ptr->waiting_pkts;
452 spin_unlock_bh(p_ptr->publ.lock);
453 }
454
455exit:
Per Liden4323add2006-01-18 00:38:21 +0100456 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100457}
458
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900459/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100460 * link_release_outqueue - purge link's outbound message queue
461 * @l_ptr: pointer to link
462 */
463
464static void link_release_outqueue(struct link *l_ptr)
465{
466 struct sk_buff *buf = l_ptr->first_out;
467 struct sk_buff *next;
468
469 while (buf) {
470 next = buf->next;
471 buf_discard(buf);
472 buf = next;
473 }
474 l_ptr->first_out = NULL;
475 l_ptr->out_queue_size = 0;
476}
477
478/**
Per Liden4323add2006-01-18 00:38:21 +0100479 * tipc_link_reset_fragments - purge link's inbound message fragments queue
Per Lidenb97bf3f2006-01-02 19:04:38 +0100480 * @l_ptr: pointer to link
481 */
482
Per Liden4323add2006-01-18 00:38:21 +0100483void tipc_link_reset_fragments(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100484{
485 struct sk_buff *buf = l_ptr->defragm_buf;
486 struct sk_buff *next;
487
488 while (buf) {
489 next = buf->next;
490 buf_discard(buf);
491 buf = next;
492 }
493 l_ptr->defragm_buf = NULL;
494}
495
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900496/**
Per Liden4323add2006-01-18 00:38:21 +0100497 * tipc_link_stop - purge all inbound and outbound messages associated with link
Per Lidenb97bf3f2006-01-02 19:04:38 +0100498 * @l_ptr: pointer to link
499 */
500
Per Liden4323add2006-01-18 00:38:21 +0100501void tipc_link_stop(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100502{
503 struct sk_buff *buf;
504 struct sk_buff *next;
505
506 buf = l_ptr->oldest_deferred_in;
507 while (buf) {
508 next = buf->next;
509 buf_discard(buf);
510 buf = next;
511 }
512
513 buf = l_ptr->first_out;
514 while (buf) {
515 next = buf->next;
516 buf_discard(buf);
517 buf = next;
518 }
519
Per Liden4323add2006-01-18 00:38:21 +0100520 tipc_link_reset_fragments(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100521
522 buf_discard(l_ptr->proto_msg_queue);
523 l_ptr->proto_msg_queue = NULL;
524}
525
Per Lidenb97bf3f2006-01-02 19:04:38 +0100526/* LINK EVENT CODE IS NOT SUPPORTED AT PRESENT */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100527#define link_send_event(fcn, l_ptr, up) do { } while (0)
528
Per Liden4323add2006-01-18 00:38:21 +0100529void tipc_link_reset(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100530{
531 struct sk_buff *buf;
532 u32 prev_state = l_ptr->state;
533 u32 checkpoint = l_ptr->next_in_no;
Allan Stephens5392d642006-06-25 23:52:50 -0700534 int was_active_link = tipc_link_is_active(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900535
Allan Stephensa686e682008-06-04 17:29:39 -0700536 msg_set_session(l_ptr->pmsg, ((msg_session(l_ptr->pmsg) + 1) & 0xffff));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100537
Allan Stephensa686e682008-06-04 17:29:39 -0700538 /* Link is down, accept any session */
539 l_ptr->peer_session = INVALID_SESSION;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100540
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900541 /* Prepare for max packet size negotiation */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100542 link_init_max_pkt(l_ptr);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900543
Per Lidenb97bf3f2006-01-02 19:04:38 +0100544 l_ptr->state = RESET_UNKNOWN;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100545
546 if ((prev_state == RESET_UNKNOWN) || (prev_state == RESET_RESET))
547 return;
548
Per Liden4323add2006-01-18 00:38:21 +0100549 tipc_node_link_down(l_ptr->owner, l_ptr);
550 tipc_bearer_remove_dest(l_ptr->b_ptr, l_ptr->addr);
Paul Gortmaker7368ddf2010-10-12 14:25:58 +0000551
Allan Stephens5392d642006-06-25 23:52:50 -0700552 if (was_active_link && tipc_node_has_active_links(l_ptr->owner) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100553 l_ptr->owner->permit_changeover) {
554 l_ptr->reset_checkpoint = checkpoint;
555 l_ptr->exp_msg_count = START_CHANGEOVER;
556 }
557
558 /* Clean up all queues: */
559
560 link_release_outqueue(l_ptr);
561 buf_discard(l_ptr->proto_msg_queue);
562 l_ptr->proto_msg_queue = NULL;
563 buf = l_ptr->oldest_deferred_in;
564 while (buf) {
565 struct sk_buff *next = buf->next;
566 buf_discard(buf);
567 buf = next;
568 }
569 if (!list_empty(&l_ptr->waiting_ports))
Per Liden4323add2006-01-18 00:38:21 +0100570 tipc_link_wakeup_ports(l_ptr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100571
572 l_ptr->retransm_queue_head = 0;
573 l_ptr->retransm_queue_size = 0;
574 l_ptr->last_out = NULL;
575 l_ptr->first_out = NULL;
576 l_ptr->next_out = NULL;
577 l_ptr->unacked_window = 0;
578 l_ptr->checkpoint = 1;
579 l_ptr->next_out_no = 1;
580 l_ptr->deferred_inqueue_sz = 0;
581 l_ptr->oldest_deferred_in = NULL;
582 l_ptr->newest_deferred_in = NULL;
583 l_ptr->fsm_msg_cnt = 0;
584 l_ptr->stale_count = 0;
585 link_reset_statistics(l_ptr);
586
Per Liden4323add2006-01-18 00:38:21 +0100587 link_send_event(tipc_cfg_link_event, l_ptr, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100588 if (!in_own_cluster(l_ptr->addr))
Per Liden4323add2006-01-18 00:38:21 +0100589 link_send_event(tipc_disc_link_event, l_ptr, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100590}
591
592
593static void link_activate(struct link *l_ptr)
594{
Allan Stephens5392d642006-06-25 23:52:50 -0700595 l_ptr->next_in_no = l_ptr->stats.recv_info = 1;
Per Liden4323add2006-01-18 00:38:21 +0100596 tipc_node_link_up(l_ptr->owner, l_ptr);
597 tipc_bearer_add_dest(l_ptr->b_ptr, l_ptr->addr);
598 link_send_event(tipc_cfg_link_event, l_ptr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100599 if (!in_own_cluster(l_ptr->addr))
Per Liden4323add2006-01-18 00:38:21 +0100600 link_send_event(tipc_disc_link_event, l_ptr, 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100601}
602
603/**
604 * link_state_event - link finite state machine
605 * @l_ptr: pointer to link
606 * @event: state machine event to process
607 */
608
609static void link_state_event(struct link *l_ptr, unsigned event)
610{
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900611 struct link *other;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100612 u32 cont_intv = l_ptr->continuity_interval;
613
614 if (!l_ptr->started && (event != STARTING_EVT))
615 return; /* Not yet. */
616
617 if (link_blocked(l_ptr)) {
618 if (event == TIMEOUT_EVT) {
619 link_set_timer(l_ptr, cont_intv);
620 }
621 return; /* Changeover going on */
622 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100623
624 switch (l_ptr->state) {
625 case WORKING_WORKING:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100626 switch (event) {
627 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100628 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100629 break;
630 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100631 if (l_ptr->next_in_no != l_ptr->checkpoint) {
632 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100633 if (tipc_bclink_acks_missing(l_ptr->owner)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900634 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100635 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100636 l_ptr->fsm_msg_cnt++;
637 } else if (l_ptr->max_pkt < l_ptr->max_pkt_target) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900638 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100639 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100640 l_ptr->fsm_msg_cnt++;
641 }
642 link_set_timer(l_ptr, cont_intv);
643 break;
644 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100645 l_ptr->state = WORKING_UNKNOWN;
646 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100647 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100648 l_ptr->fsm_msg_cnt++;
649 link_set_timer(l_ptr, cont_intv / 4);
650 break;
651 case RESET_MSG:
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900652 info("Resetting link <%s>, requested by peer\n",
Allan Stephensa10bd922006-06-25 23:52:17 -0700653 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100654 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100655 l_ptr->state = RESET_RESET;
656 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100657 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100658 l_ptr->fsm_msg_cnt++;
659 link_set_timer(l_ptr, cont_intv);
660 break;
661 default:
662 err("Unknown link event %u in WW state\n", event);
663 }
664 break;
665 case WORKING_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100666 switch (event) {
667 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100668 case ACTIVATE_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100669 l_ptr->state = WORKING_WORKING;
670 l_ptr->fsm_msg_cnt = 0;
671 link_set_timer(l_ptr, cont_intv);
672 break;
673 case RESET_MSG:
Allan Stephensa10bd922006-06-25 23:52:17 -0700674 info("Resetting link <%s>, requested by peer "
675 "while probing\n", l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100676 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100677 l_ptr->state = RESET_RESET;
678 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100679 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100680 l_ptr->fsm_msg_cnt++;
681 link_set_timer(l_ptr, cont_intv);
682 break;
683 case TIMEOUT_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100684 if (l_ptr->next_in_no != l_ptr->checkpoint) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100685 l_ptr->state = WORKING_WORKING;
686 l_ptr->fsm_msg_cnt = 0;
687 l_ptr->checkpoint = l_ptr->next_in_no;
Per Liden4323add2006-01-18 00:38:21 +0100688 if (tipc_bclink_acks_missing(l_ptr->owner)) {
689 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
690 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100691 l_ptr->fsm_msg_cnt++;
692 }
693 link_set_timer(l_ptr, cont_intv);
694 } else if (l_ptr->fsm_msg_cnt < l_ptr->abort_limit) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900695 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +0100696 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100697 l_ptr->fsm_msg_cnt++;
698 link_set_timer(l_ptr, cont_intv / 4);
699 } else { /* Link has failed */
Allan Stephensa10bd922006-06-25 23:52:17 -0700700 warn("Resetting link <%s>, peer not responding\n",
701 l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100702 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100703 l_ptr->state = RESET_UNKNOWN;
704 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100705 tipc_link_send_proto_msg(l_ptr, RESET_MSG,
706 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100707 l_ptr->fsm_msg_cnt++;
708 link_set_timer(l_ptr, cont_intv);
709 }
710 break;
711 default:
712 err("Unknown link event %u in WU state\n", event);
713 }
714 break;
715 case RESET_UNKNOWN:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100716 switch (event) {
717 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100718 break;
719 case ACTIVATE_MSG:
720 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000721 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100722 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100723 l_ptr->state = WORKING_WORKING;
724 l_ptr->fsm_msg_cnt = 0;
725 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100726 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100727 l_ptr->fsm_msg_cnt++;
728 link_set_timer(l_ptr, cont_intv);
729 break;
730 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100731 l_ptr->state = RESET_RESET;
732 l_ptr->fsm_msg_cnt = 0;
Per Liden4323add2006-01-18 00:38:21 +0100733 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100734 l_ptr->fsm_msg_cnt++;
735 link_set_timer(l_ptr, cont_intv);
736 break;
737 case STARTING_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100738 l_ptr->started = 1;
739 /* fall through */
740 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100741 tipc_link_send_proto_msg(l_ptr, RESET_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100742 l_ptr->fsm_msg_cnt++;
743 link_set_timer(l_ptr, cont_intv);
744 break;
745 default:
746 err("Unknown link event %u in RU state\n", event);
747 }
748 break;
749 case RESET_RESET:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100750 switch (event) {
751 case TRAFFIC_MSG_EVT:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100752 case ACTIVATE_MSG:
753 other = l_ptr->owner->active_links[0];
Allan Stephens8d64a5b2010-12-31 18:59:27 +0000754 if (other && link_working_unknown(other))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100755 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100756 l_ptr->state = WORKING_WORKING;
757 l_ptr->fsm_msg_cnt = 0;
758 link_activate(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100759 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 1, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100760 l_ptr->fsm_msg_cnt++;
761 link_set_timer(l_ptr, cont_intv);
762 break;
763 case RESET_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100764 break;
765 case TIMEOUT_EVT:
Per Liden4323add2006-01-18 00:38:21 +0100766 tipc_link_send_proto_msg(l_ptr, ACTIVATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100767 l_ptr->fsm_msg_cnt++;
768 link_set_timer(l_ptr, cont_intv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100769 break;
770 default:
771 err("Unknown link event %u in RR state\n", event);
772 }
773 break;
774 default:
775 err("Unknown link state %u/%u\n", l_ptr->state, event);
776 }
777}
778
779/*
780 * link_bundle_buf(): Append contents of a buffer to
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900781 * the tail of an existing one.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100782 */
783
784static int link_bundle_buf(struct link *l_ptr,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900785 struct sk_buff *bundler,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100786 struct sk_buff *buf)
787{
788 struct tipc_msg *bundler_msg = buf_msg(bundler);
789 struct tipc_msg *msg = buf_msg(buf);
790 u32 size = msg_size(msg);
Allan Stephense49060c2006-06-29 12:32:46 -0700791 u32 bundle_size = msg_size(bundler_msg);
792 u32 to_pos = align(bundle_size);
793 u32 pad = to_pos - bundle_size;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100794
795 if (msg_user(bundler_msg) != MSG_BUNDLER)
796 return 0;
797 if (msg_type(bundler_msg) != OPEN_MSG)
798 return 0;
Allan Stephense49060c2006-06-29 12:32:46 -0700799 if (skb_tailroom(bundler) < (pad + size))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100800 return 0;
Allan Stephens15e979d2010-05-11 14:30:10 +0000801 if (l_ptr->max_pkt < (to_pos + size))
Allan Stephens863fae62006-07-03 19:39:36 -0700802 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100803
Allan Stephense49060c2006-06-29 12:32:46 -0700804 skb_put(bundler, pad + size);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300805 skb_copy_to_linear_data_offset(bundler, to_pos, buf->data, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100806 msg_set_size(bundler_msg, to_pos + size);
807 msg_set_msgcnt(bundler_msg, msg_msgcnt(bundler_msg) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100808 buf_discard(buf);
809 l_ptr->stats.sent_bundled++;
810 return 1;
811}
812
Sam Ravnborg05790c62006-03-20 22:37:04 -0800813static void link_add_to_outqueue(struct link *l_ptr,
814 struct sk_buff *buf,
815 struct tipc_msg *msg)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100816{
817 u32 ack = mod(l_ptr->next_in_no - 1);
818 u32 seqno = mod(l_ptr->next_out_no++);
819
820 msg_set_word(msg, 2, ((ack << 16) | seqno));
821 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
822 buf->next = NULL;
823 if (l_ptr->first_out) {
824 l_ptr->last_out->next = buf;
825 l_ptr->last_out = buf;
826 } else
827 l_ptr->first_out = l_ptr->last_out = buf;
828 l_ptr->out_queue_size++;
829}
830
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900831/*
832 * tipc_link_send_buf() is the 'full path' for messages, called from
Per Lidenb97bf3f2006-01-02 19:04:38 +0100833 * inside TIPC when the 'fast path' in tipc_send_buf
834 * has failed, and from link_send()
835 */
836
Per Liden4323add2006-01-18 00:38:21 +0100837int tipc_link_send_buf(struct link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100838{
839 struct tipc_msg *msg = buf_msg(buf);
840 u32 size = msg_size(msg);
841 u32 dsz = msg_data_sz(msg);
842 u32 queue_size = l_ptr->out_queue_size;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000843 u32 imp = tipc_msg_tot_importance(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100844 u32 queue_limit = l_ptr->queue_limit[imp];
Allan Stephens15e979d2010-05-11 14:30:10 +0000845 u32 max_packet = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100846
847 msg_set_prevnode(msg, tipc_own_addr); /* If routed message */
848
849 /* Match msg importance against queue limits: */
850
851 if (unlikely(queue_size >= queue_limit)) {
852 if (imp <= TIPC_CRITICAL_IMPORTANCE) {
853 return link_schedule_port(l_ptr, msg_origport(msg),
854 size);
855 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100856 buf_discard(buf);
857 if (imp > CONN_MANAGER) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700858 warn("Resetting link <%s>, send queue full", l_ptr->name);
Per Liden4323add2006-01-18 00:38:21 +0100859 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100860 }
861 return dsz;
862 }
863
864 /* Fragmentation needed ? */
865
866 if (size > max_packet)
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000867 return link_send_long_buf(l_ptr, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100868
869 /* Packet can be queued or sent: */
870
871 if (queue_size > l_ptr->stats.max_queue_sz)
872 l_ptr->stats.max_queue_sz = queue_size;
873
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900874 if (likely(!tipc_bearer_congested(l_ptr->b_ptr, l_ptr) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100875 !link_congested(l_ptr))) {
876 link_add_to_outqueue(l_ptr, buf, msg);
877
Per Liden4323add2006-01-18 00:38:21 +0100878 if (likely(tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100879 l_ptr->unacked_window = 0;
880 } else {
Per Liden4323add2006-01-18 00:38:21 +0100881 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100882 l_ptr->stats.bearer_congs++;
883 l_ptr->next_out = buf;
884 }
885 return dsz;
886 }
887 /* Congestion: can message be bundled ?: */
888
889 if ((msg_user(msg) != CHANGEOVER_PROTOCOL) &&
890 (msg_user(msg) != MSG_FRAGMENTER)) {
891
892 /* Try adding message to an existing bundle */
893
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900894 if (l_ptr->next_out &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100895 link_bundle_buf(l_ptr, l_ptr->last_out, buf)) {
Per Liden4323add2006-01-18 00:38:21 +0100896 tipc_bearer_resolve_congestion(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100897 return dsz;
898 }
899
900 /* Try creating a new bundle */
901
902 if (size <= max_packet * 2 / 3) {
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000903 struct sk_buff *bundler = tipc_buf_acquire(max_packet);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100904 struct tipc_msg bundler_hdr;
905
906 if (bundler) {
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000907 tipc_msg_init(&bundler_hdr, MSG_BUNDLER, OPEN_MSG,
Allan Stephens75715212008-06-04 17:37:34 -0700908 INT_H_SIZE, l_ptr->addr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300909 skb_copy_to_linear_data(bundler, &bundler_hdr,
910 INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100911 skb_trim(bundler, INT_H_SIZE);
912 link_bundle_buf(l_ptr, bundler, buf);
913 buf = bundler;
914 msg = buf_msg(buf);
915 l_ptr->stats.sent_bundles++;
916 }
917 }
918 }
919 if (!l_ptr->next_out)
920 l_ptr->next_out = buf;
921 link_add_to_outqueue(l_ptr, buf, msg);
Per Liden4323add2006-01-18 00:38:21 +0100922 tipc_bearer_resolve_congestion(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100923 return dsz;
924}
925
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900926/*
927 * tipc_link_send(): same as tipc_link_send_buf(), but the link to use has
Per Lidenb97bf3f2006-01-02 19:04:38 +0100928 * not been selected yet, and the the owner node is not locked
929 * Called by TIPC internal users, e.g. the name distributor
930 */
931
Per Liden4323add2006-01-18 00:38:21 +0100932int tipc_link_send(struct sk_buff *buf, u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100933{
934 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -0700935 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100936 int res = -ELINKCONG;
937
Per Liden4323add2006-01-18 00:38:21 +0100938 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +0000939 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100940 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +0100941 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100942 l_ptr = n_ptr->active_links[selector & 1];
Per Lidenb97bf3f2006-01-02 19:04:38 +0100943 if (l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +0100944 res = tipc_link_send_buf(l_ptr, buf);
Allan Stephensc33d53b2006-06-25 23:50:30 -0700945 } else {
Allan Stephensc33d53b2006-06-25 23:50:30 -0700946 buf_discard(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100947 }
Per Liden4323add2006-01-18 00:38:21 +0100948 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100949 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100950 buf_discard(buf);
951 }
Per Liden4323add2006-01-18 00:38:21 +0100952 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100953 return res;
954}
955
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900956/*
957 * link_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +0100958 * destination link is known and the header is complete,
959 * inclusive total message length. Very time critical.
960 * Link is locked. Returns user data length.
961 */
962
Sam Ravnborg05790c62006-03-20 22:37:04 -0800963static int link_send_buf_fast(struct link *l_ptr, struct sk_buff *buf,
964 u32 *used_max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100965{
966 struct tipc_msg *msg = buf_msg(buf);
967 int res = msg_data_sz(msg);
968
969 if (likely(!link_congested(l_ptr))) {
Allan Stephens15e979d2010-05-11 14:30:10 +0000970 if (likely(msg_size(msg) <= l_ptr->max_pkt)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100971 if (likely(list_empty(&l_ptr->b_ptr->cong_links))) {
972 link_add_to_outqueue(l_ptr, buf, msg);
Per Liden4323add2006-01-18 00:38:21 +0100973 if (likely(tipc_bearer_send(l_ptr->b_ptr, buf,
974 &l_ptr->media_addr))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100975 l_ptr->unacked_window = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100976 return res;
977 }
Per Liden4323add2006-01-18 00:38:21 +0100978 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100979 l_ptr->stats.bearer_congs++;
980 l_ptr->next_out = buf;
981 return res;
982 }
Allan Stephens0e659672010-12-31 18:59:32 +0000983 } else
Allan Stephens15e979d2010-05-11 14:30:10 +0000984 *used_max_pkt = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100985 }
Per Liden4323add2006-01-18 00:38:21 +0100986 return tipc_link_send_buf(l_ptr, buf); /* All other cases */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100987}
988
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900989/*
990 * tipc_send_buf_fast: Entry for data messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +0100991 * destination node is known and the header is complete,
992 * inclusive total message length.
993 * Returns user data length.
994 */
995int tipc_send_buf_fast(struct sk_buff *buf, u32 destnode)
996{
997 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -0700998 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100999 int res;
1000 u32 selector = msg_origport(buf_msg(buf)) & 1;
1001 u32 dummy;
1002
1003 if (destnode == tipc_own_addr)
Per Liden4323add2006-01-18 00:38:21 +01001004 return tipc_port_recv_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001005
Per Liden4323add2006-01-18 00:38:21 +01001006 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001007 n_ptr = tipc_node_find(destnode);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001008 if (likely(n_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +01001009 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001010 l_ptr = n_ptr->active_links[selector];
Per Lidenb97bf3f2006-01-02 19:04:38 +01001011 if (likely(l_ptr)) {
1012 res = link_send_buf_fast(l_ptr, buf, &dummy);
Per Liden4323add2006-01-18 00:38:21 +01001013 tipc_node_unlock(n_ptr);
1014 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001015 return res;
1016 }
Per Liden4323add2006-01-18 00:38:21 +01001017 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001018 }
Per Liden4323add2006-01-18 00:38:21 +01001019 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001020 res = msg_data_sz(buf_msg(buf));
1021 tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1022 return res;
1023}
1024
1025
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001026/*
1027 * tipc_link_send_sections_fast: Entry for messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001028 * destination processor is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001029 * except for total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001030 * Returns user data length or errno.
1031 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001032int tipc_link_send_sections_fast(struct port *sender,
Per Liden4323add2006-01-18 00:38:21 +01001033 struct iovec const *msg_sect,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001034 const u32 num_sect,
Per Liden4323add2006-01-18 00:38:21 +01001035 u32 destaddr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001036{
1037 struct tipc_msg *hdr = &sender->publ.phdr;
1038 struct link *l_ptr;
1039 struct sk_buff *buf;
David S. Miller6c000552008-09-02 23:38:32 -07001040 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001041 int res;
1042 u32 selector = msg_origport(hdr) & 1;
1043
Per Lidenb97bf3f2006-01-02 19:04:38 +01001044again:
1045 /*
1046 * Try building message using port's max_pkt hint.
1047 * (Must not hold any locks while building message.)
1048 */
1049
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001050 res = tipc_msg_build(hdr, msg_sect, num_sect, sender->publ.max_pkt,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001051 !sender->user_port, &buf);
1052
Per Liden4323add2006-01-18 00:38:21 +01001053 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001054 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001055 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001056 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001057 l_ptr = node->active_links[selector];
1058 if (likely(l_ptr)) {
1059 if (likely(buf)) {
1060 res = link_send_buf_fast(l_ptr, buf,
Allan Stephens05646c92007-06-10 17:25:24 -07001061 &sender->publ.max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001062 if (unlikely(res < 0))
1063 buf_discard(buf);
1064exit:
Per Liden4323add2006-01-18 00:38:21 +01001065 tipc_node_unlock(node);
1066 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001067 return res;
1068 }
1069
1070 /* Exit if build request was invalid */
1071
1072 if (unlikely(res < 0))
1073 goto exit;
1074
1075 /* Exit if link (or bearer) is congested */
1076
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001077 if (link_congested(l_ptr) ||
Per Lidenb97bf3f2006-01-02 19:04:38 +01001078 !list_empty(&l_ptr->b_ptr->cong_links)) {
1079 res = link_schedule_port(l_ptr,
1080 sender->publ.ref, res);
1081 goto exit;
1082 }
1083
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001084 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001085 * Message size exceeds max_pkt hint; update hint,
1086 * then re-try fast path or fragment the message
1087 */
1088
Allan Stephens15e979d2010-05-11 14:30:10 +00001089 sender->publ.max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001090 tipc_node_unlock(node);
1091 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001092
1093
Allan Stephens05646c92007-06-10 17:25:24 -07001094 if ((msg_hdr_sz(hdr) + res) <= sender->publ.max_pkt)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001095 goto again;
1096
1097 return link_send_sections_long(sender, msg_sect,
1098 num_sect, destaddr);
1099 }
Per Liden4323add2006-01-18 00:38:21 +01001100 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001101 }
Per Liden4323add2006-01-18 00:38:21 +01001102 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001103
1104 /* Couldn't find a link to the destination node */
1105
1106 if (buf)
1107 return tipc_reject_msg(buf, TIPC_ERR_NO_NODE);
1108 if (res >= 0)
Per Liden4323add2006-01-18 00:38:21 +01001109 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
1110 TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001111 return res;
1112}
1113
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001114/*
1115 * link_send_sections_long(): Entry for long messages where the
Per Lidenb97bf3f2006-01-02 19:04:38 +01001116 * destination node is known and the header is complete,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001117 * inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01001118 * Link and bearer congestion status have been checked to be ok,
1119 * and are ignored if they change.
1120 *
1121 * Note that fragments do not use the full link MTU so that they won't have
1122 * to undergo refragmentation if link changeover causes them to be sent
1123 * over another link with an additional tunnel header added as prefix.
1124 * (Refragmentation will still occur if the other link has a smaller MTU.)
1125 *
1126 * Returns user data length or errno.
1127 */
1128static int link_send_sections_long(struct port *sender,
1129 struct iovec const *msg_sect,
1130 u32 num_sect,
1131 u32 destaddr)
1132{
1133 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001134 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001135 struct tipc_msg *hdr = &sender->publ.phdr;
1136 u32 dsz = msg_data_sz(hdr);
Allan Stephens0e659672010-12-31 18:59:32 +00001137 u32 max_pkt, fragm_sz, rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001138 struct tipc_msg fragm_hdr;
Allan Stephens0e659672010-12-31 18:59:32 +00001139 struct sk_buff *buf, *buf_chain, *prev;
1140 u32 fragm_crs, fragm_rest, hsz, sect_rest;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001141 const unchar *sect_crs;
1142 int curr_sect;
1143 u32 fragm_no;
1144
1145again:
1146 fragm_no = 1;
Allan Stephens05646c92007-06-10 17:25:24 -07001147 max_pkt = sender->publ.max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001148 /* leave room for tunnel header in case of link changeover */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001149 fragm_sz = max_pkt - INT_H_SIZE;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001150 /* leave room for fragmentation header in each fragment */
1151 rest = dsz;
1152 fragm_crs = 0;
1153 fragm_rest = 0;
1154 sect_rest = 0;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001155 sect_crs = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001156 curr_sect = -1;
1157
1158 /* Prepare reusable fragment header: */
1159
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001160 tipc_msg_init(&fragm_hdr, MSG_FRAGMENTER, FIRST_FRAGMENT,
Allan Stephens75715212008-06-04 17:37:34 -07001161 INT_H_SIZE, msg_destnode(hdr));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001162 msg_set_link_selector(&fragm_hdr, sender->publ.ref);
1163 msg_set_size(&fragm_hdr, max_pkt);
1164 msg_set_fragm_no(&fragm_hdr, 1);
1165
1166 /* Prepare header of first fragment: */
1167
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001168 buf_chain = buf = tipc_buf_acquire(max_pkt);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001169 if (!buf)
1170 return -ENOMEM;
1171 buf->next = NULL;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001172 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001173 hsz = msg_hdr_sz(hdr);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001174 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, hdr, hsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001175
1176 /* Chop up message: */
1177
1178 fragm_crs = INT_H_SIZE + hsz;
1179 fragm_rest = fragm_sz - hsz;
1180
1181 do { /* For all sections */
1182 u32 sz;
1183
1184 if (!sect_rest) {
1185 sect_rest = msg_sect[++curr_sect].iov_len;
1186 sect_crs = (const unchar *)msg_sect[curr_sect].iov_base;
1187 }
1188
1189 if (sect_rest < fragm_rest)
1190 sz = sect_rest;
1191 else
1192 sz = fragm_rest;
1193
1194 if (likely(!sender->user_port)) {
1195 if (copy_from_user(buf->data + fragm_crs, sect_crs, sz)) {
1196error:
1197 for (; buf_chain; buf_chain = buf) {
1198 buf = buf_chain->next;
1199 buf_discard(buf_chain);
1200 }
1201 return -EFAULT;
1202 }
1203 } else
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001204 skb_copy_to_linear_data_offset(buf, fragm_crs,
1205 sect_crs, sz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001206 sect_crs += sz;
1207 sect_rest -= sz;
1208 fragm_crs += sz;
1209 fragm_rest -= sz;
1210 rest -= sz;
1211
1212 if (!fragm_rest && rest) {
1213
1214 /* Initiate new fragment: */
1215 if (rest <= fragm_sz) {
1216 fragm_sz = rest;
Allan Stephens0e659672010-12-31 18:59:32 +00001217 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001218 } else {
1219 msg_set_type(&fragm_hdr, FRAGMENT);
1220 }
1221 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
1222 msg_set_fragm_no(&fragm_hdr, ++fragm_no);
1223 prev = buf;
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001224 buf = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001225 if (!buf)
1226 goto error;
1227
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001228 buf->next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001229 prev->next = buf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001230 skb_copy_to_linear_data(buf, &fragm_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001231 fragm_crs = INT_H_SIZE;
1232 fragm_rest = fragm_sz;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001233 }
Allan Stephens0e659672010-12-31 18:59:32 +00001234 } while (rest > 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001235
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001236 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001237 * Now we have a buffer chain. Select a link and check
1238 * that packet size is still OK
1239 */
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001240 node = tipc_node_find(destaddr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001241 if (likely(node)) {
Per Liden4323add2006-01-18 00:38:21 +01001242 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001243 l_ptr = node->active_links[sender->publ.ref & 1];
1244 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01001245 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001246 goto reject;
1247 }
Allan Stephens15e979d2010-05-11 14:30:10 +00001248 if (l_ptr->max_pkt < max_pkt) {
1249 sender->publ.max_pkt = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01001250 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001251 for (; buf_chain; buf_chain = buf) {
1252 buf = buf_chain->next;
1253 buf_discard(buf_chain);
1254 }
1255 goto again;
1256 }
1257 } else {
1258reject:
1259 for (; buf_chain; buf_chain = buf) {
1260 buf = buf_chain->next;
1261 buf_discard(buf_chain);
1262 }
Per Liden4323add2006-01-18 00:38:21 +01001263 return tipc_port_reject_sections(sender, hdr, msg_sect, num_sect,
1264 TIPC_ERR_NO_NODE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001265 }
1266
1267 /* Append whole chain to send queue: */
1268
1269 buf = buf_chain;
1270 l_ptr->long_msg_seq_no = mod(l_ptr->long_msg_seq_no + 1);
1271 if (!l_ptr->next_out)
1272 l_ptr->next_out = buf_chain;
1273 l_ptr->stats.sent_fragmented++;
1274 while (buf) {
1275 struct sk_buff *next = buf->next;
1276 struct tipc_msg *msg = buf_msg(buf);
1277
1278 l_ptr->stats.sent_fragments++;
1279 msg_set_long_msgno(msg, l_ptr->long_msg_seq_no);
1280 link_add_to_outqueue(l_ptr, buf, msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001281 buf = next;
1282 }
1283
1284 /* Send it, if possible: */
1285
Per Liden4323add2006-01-18 00:38:21 +01001286 tipc_link_push_queue(l_ptr);
1287 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001288 return dsz;
1289}
1290
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001291/*
Per Liden4323add2006-01-18 00:38:21 +01001292 * tipc_link_push_packet: Push one unsent packet to the media
Per Lidenb97bf3f2006-01-02 19:04:38 +01001293 */
Per Liden4323add2006-01-18 00:38:21 +01001294u32 tipc_link_push_packet(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001295{
1296 struct sk_buff *buf = l_ptr->first_out;
1297 u32 r_q_size = l_ptr->retransm_queue_size;
1298 u32 r_q_head = l_ptr->retransm_queue_head;
1299
1300 /* Step to position where retransmission failed, if any, */
1301 /* consider that buffers may have been released in meantime */
1302
1303 if (r_q_size && buf) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001304 u32 last = lesser(mod(r_q_head + r_q_size),
Per Lidenb97bf3f2006-01-02 19:04:38 +01001305 link_last_sent(l_ptr));
1306 u32 first = msg_seqno(buf_msg(buf));
1307
1308 while (buf && less(first, r_q_head)) {
1309 first = mod(first + 1);
1310 buf = buf->next;
1311 }
1312 l_ptr->retransm_queue_head = r_q_head = first;
1313 l_ptr->retransm_queue_size = r_q_size = mod(last - first);
1314 }
1315
1316 /* Continue retransmission now, if there is anything: */
1317
Neil Hormanca509102010-03-15 07:58:45 +00001318 if (r_q_size && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001319 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001320 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001321 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001322 l_ptr->retransm_queue_head = mod(++r_q_head);
1323 l_ptr->retransm_queue_size = --r_q_size;
1324 l_ptr->stats.retransmitted++;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001325 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001326 } else {
1327 l_ptr->stats.bearer_congs++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001328 return PUSH_FAILED;
1329 }
1330 }
1331
1332 /* Send deferred protocol message, if any: */
1333
1334 buf = l_ptr->proto_msg_queue;
1335 if (buf) {
1336 msg_set_ack(buf_msg(buf), mod(l_ptr->next_in_no - 1));
Allan Stephens0e659672010-12-31 18:59:32 +00001337 msg_set_bcast_ack(buf_msg(buf), l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001338 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001339 l_ptr->unacked_window = 0;
1340 buf_discard(buf);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001341 l_ptr->proto_msg_queue = NULL;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001342 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001343 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001344 l_ptr->stats.bearer_congs++;
1345 return PUSH_FAILED;
1346 }
1347 }
1348
1349 /* Send one deferred data message, if send window not full: */
1350
1351 buf = l_ptr->next_out;
1352 if (buf) {
1353 struct tipc_msg *msg = buf_msg(buf);
1354 u32 next = msg_seqno(msg);
1355 u32 first = msg_seqno(buf_msg(l_ptr->first_out));
1356
1357 if (mod(next - first) < l_ptr->queue_limit[0]) {
1358 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001359 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001360 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001361 if (msg_user(msg) == MSG_BUNDLER)
1362 msg_set_type(msg, CLOSED_MSG);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001363 l_ptr->next_out = buf->next;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001364 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001365 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001366 l_ptr->stats.bearer_congs++;
1367 return PUSH_FAILED;
1368 }
1369 }
1370 }
1371 return PUSH_FINISHED;
1372}
1373
1374/*
1375 * push_queue(): push out the unsent messages of a link where
1376 * congestion has abated. Node is locked
1377 */
Per Liden4323add2006-01-18 00:38:21 +01001378void tipc_link_push_queue(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001379{
1380 u32 res;
1381
Per Liden4323add2006-01-18 00:38:21 +01001382 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001383 return;
1384
1385 do {
Per Liden4323add2006-01-18 00:38:21 +01001386 res = tipc_link_push_packet(l_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001387 } while (!res);
1388
Per Lidenb97bf3f2006-01-02 19:04:38 +01001389 if (res == PUSH_FAILED)
Per Liden4323add2006-01-18 00:38:21 +01001390 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001391}
1392
Allan Stephensd356eeb2006-06-25 23:40:01 -07001393static void link_reset_all(unsigned long addr)
1394{
David S. Miller6c000552008-09-02 23:38:32 -07001395 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001396 char addr_string[16];
1397 u32 i;
1398
1399 read_lock_bh(&tipc_net_lock);
1400 n_ptr = tipc_node_find((u32)addr);
1401 if (!n_ptr) {
1402 read_unlock_bh(&tipc_net_lock);
1403 return; /* node no longer exists */
1404 }
1405
1406 tipc_node_lock(n_ptr);
1407
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001408 warn("Resetting all links to %s\n",
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001409 tipc_addr_string_fill(addr_string, n_ptr->addr));
Allan Stephensd356eeb2006-06-25 23:40:01 -07001410
1411 for (i = 0; i < MAX_BEARERS; i++) {
1412 if (n_ptr->links[i]) {
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001413 link_print(n_ptr->links[i], "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001414 tipc_link_reset(n_ptr->links[i]);
1415 }
1416 }
1417
1418 tipc_node_unlock(n_ptr);
1419 read_unlock_bh(&tipc_net_lock);
1420}
1421
1422static void link_retransmit_failure(struct link *l_ptr, struct sk_buff *buf)
1423{
1424 struct tipc_msg *msg = buf_msg(buf);
1425
1426 warn("Retransmission failure on link <%s>\n", l_ptr->name);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001427
1428 if (l_ptr->addr) {
1429
1430 /* Handle failure on standard link */
1431
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001432 link_print(l_ptr, "Resetting link\n");
Allan Stephensd356eeb2006-06-25 23:40:01 -07001433 tipc_link_reset(l_ptr);
1434
1435 } else {
1436
1437 /* Handle failure on broadcast link */
1438
David S. Miller6c000552008-09-02 23:38:32 -07001439 struct tipc_node *n_ptr;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001440 char addr_string[16];
1441
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001442 info("Msg seq number: %u, ", msg_seqno(msg));
1443 info("Outstanding acks: %lu\n",
1444 (unsigned long) TIPC_SKB_CB(buf)->handle);
Jeff Garzik617dbea2006-10-03 16:25:34 -07001445
Allan Stephensd356eeb2006-06-25 23:40:01 -07001446 n_ptr = l_ptr->owner->next;
1447 tipc_node_lock(n_ptr);
1448
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001449 tipc_addr_string_fill(addr_string, n_ptr->addr);
Allan Stephens8d64a5b2010-12-31 18:59:27 +00001450 info("Multicast link info for %s\n", addr_string);
1451 info("Supported: %d, ", n_ptr->bclink.supported);
1452 info("Acked: %u\n", n_ptr->bclink.acked);
1453 info("Last in: %u, ", n_ptr->bclink.last_in);
1454 info("Gap after: %u, ", n_ptr->bclink.gap_after);
1455 info("Gap to: %u\n", n_ptr->bclink.gap_to);
1456 info("Nack sync: %u\n\n", n_ptr->bclink.nack_sync);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001457
1458 tipc_k_signal((Handler)link_reset_all, (unsigned long)n_ptr->addr);
1459
1460 tipc_node_unlock(n_ptr);
1461
1462 l_ptr->stale_count = 0;
1463 }
1464}
1465
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001466void tipc_link_retransmit(struct link *l_ptr, struct sk_buff *buf,
Per Liden4323add2006-01-18 00:38:21 +01001467 u32 retransmits)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001468{
1469 struct tipc_msg *msg;
1470
Allan Stephensd356eeb2006-06-25 23:40:01 -07001471 if (!buf)
1472 return;
1473
1474 msg = buf_msg(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001475
Allan Stephensd356eeb2006-06-25 23:40:01 -07001476 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr)) {
Neil Hormanca509102010-03-15 07:58:45 +00001477 if (l_ptr->retransm_queue_size == 0) {
Allan Stephensd356eeb2006-06-25 23:40:01 -07001478 l_ptr->retransm_queue_head = msg_seqno(msg);
1479 l_ptr->retransm_queue_size = retransmits;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001480 } else {
Neil Hormanca509102010-03-15 07:58:45 +00001481 err("Unexpected retransmit on link %s (qsize=%d)\n",
1482 l_ptr->name, l_ptr->retransm_queue_size);
Allan Stephensd356eeb2006-06-25 23:40:01 -07001483 }
Neil Hormanca509102010-03-15 07:58:45 +00001484 return;
Allan Stephensd356eeb2006-06-25 23:40:01 -07001485 } else {
1486 /* Detect repeated retransmit failures on uncongested bearer */
1487
1488 if (l_ptr->last_retransmitted == msg_seqno(msg)) {
1489 if (++l_ptr->stale_count > 100) {
1490 link_retransmit_failure(l_ptr, buf);
1491 return;
1492 }
1493 } else {
1494 l_ptr->last_retransmitted = msg_seqno(msg);
1495 l_ptr->stale_count = 1;
1496 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001497 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001498
Neil Hormanca509102010-03-15 07:58:45 +00001499 while (retransmits && (buf != l_ptr->next_out) && buf) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001500 msg = buf_msg(buf);
1501 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001502 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Liden4323add2006-01-18 00:38:21 +01001503 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001504 buf = buf->next;
1505 retransmits--;
1506 l_ptr->stats.retransmitted++;
1507 } else {
Per Liden4323add2006-01-18 00:38:21 +01001508 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001509 l_ptr->stats.bearer_congs++;
1510 l_ptr->retransm_queue_head = msg_seqno(buf_msg(buf));
1511 l_ptr->retransm_queue_size = retransmits;
1512 return;
1513 }
1514 }
Allan Stephensd356eeb2006-06-25 23:40:01 -07001515
Per Lidenb97bf3f2006-01-02 19:04:38 +01001516 l_ptr->retransm_queue_head = l_ptr->retransm_queue_size = 0;
1517}
1518
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001519/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001520 * link_insert_deferred_queue - insert deferred messages back into receive chain
1521 */
1522
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001523static struct sk_buff *link_insert_deferred_queue(struct link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001524 struct sk_buff *buf)
1525{
1526 u32 seq_no;
1527
1528 if (l_ptr->oldest_deferred_in == NULL)
1529 return buf;
1530
1531 seq_no = msg_seqno(buf_msg(l_ptr->oldest_deferred_in));
1532 if (seq_no == mod(l_ptr->next_in_no)) {
1533 l_ptr->newest_deferred_in->next = buf;
1534 buf = l_ptr->oldest_deferred_in;
1535 l_ptr->oldest_deferred_in = NULL;
1536 l_ptr->deferred_inqueue_sz = 0;
1537 }
1538 return buf;
1539}
1540
Allan Stephens85035562008-04-15 19:04:54 -07001541/**
1542 * link_recv_buf_validate - validate basic format of received message
1543 *
1544 * This routine ensures a TIPC message has an acceptable header, and at least
1545 * as much data as the header indicates it should. The routine also ensures
1546 * that the entire message header is stored in the main fragment of the message
1547 * buffer, to simplify future access to message header fields.
1548 *
1549 * Note: Having extra info present in the message header or data areas is OK.
1550 * TIPC will ignore the excess, under the assumption that it is optional info
1551 * introduced by a later release of the protocol.
1552 */
1553
1554static int link_recv_buf_validate(struct sk_buff *buf)
1555{
1556 static u32 min_data_hdr_size[8] = {
1557 SHORT_H_SIZE, MCAST_H_SIZE, LONG_H_SIZE, DIR_MSG_H_SIZE,
1558 MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE
1559 };
1560
1561 struct tipc_msg *msg;
1562 u32 tipc_hdr[2];
1563 u32 size;
1564 u32 hdr_size;
1565 u32 min_hdr_size;
1566
1567 if (unlikely(buf->len < MIN_H_SIZE))
1568 return 0;
1569
1570 msg = skb_header_pointer(buf, 0, sizeof(tipc_hdr), tipc_hdr);
1571 if (msg == NULL)
1572 return 0;
1573
1574 if (unlikely(msg_version(msg) != TIPC_VERSION))
1575 return 0;
1576
1577 size = msg_size(msg);
1578 hdr_size = msg_hdr_sz(msg);
1579 min_hdr_size = msg_isdata(msg) ?
1580 min_data_hdr_size[msg_type(msg)] : INT_H_SIZE;
1581
1582 if (unlikely((hdr_size < min_hdr_size) ||
1583 (size < hdr_size) ||
1584 (buf->len < size) ||
1585 (size - hdr_size > TIPC_MAX_USER_MSG_SIZE)))
1586 return 0;
1587
1588 return pskb_may_pull(buf, hdr_size);
1589}
1590
Allan Stephensb02b69c2010-08-17 11:00:07 +00001591/**
1592 * tipc_recv_msg - process TIPC messages arriving from off-node
1593 * @head: pointer to message buffer chain
1594 * @tb_ptr: pointer to bearer message arrived on
1595 *
1596 * Invoked with no locks held. Bearer pointer must point to a valid bearer
1597 * structure (i.e. cannot be NULL), but bearer can be inactive.
1598 */
1599
Per Lidenb97bf3f2006-01-02 19:04:38 +01001600void tipc_recv_msg(struct sk_buff *head, struct tipc_bearer *tb_ptr)
1601{
Per Liden4323add2006-01-18 00:38:21 +01001602 read_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001603 while (head) {
Allan Stephens1265a022008-06-04 17:32:35 -07001604 struct bearer *b_ptr = (struct bearer *)tb_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07001605 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001606 struct link *l_ptr;
1607 struct sk_buff *crs;
1608 struct sk_buff *buf = head;
Allan Stephens85035562008-04-15 19:04:54 -07001609 struct tipc_msg *msg;
1610 u32 seq_no;
1611 u32 ackd;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001612 u32 released = 0;
1613 int type;
1614
Per Lidenb97bf3f2006-01-02 19:04:38 +01001615 head = head->next;
Allan Stephens85035562008-04-15 19:04:54 -07001616
Allan Stephensb02b69c2010-08-17 11:00:07 +00001617 /* Ensure bearer is still enabled */
1618
1619 if (unlikely(!b_ptr->active))
1620 goto cont;
1621
Allan Stephens85035562008-04-15 19:04:54 -07001622 /* Ensure message is well-formed */
1623
1624 if (unlikely(!link_recv_buf_validate(buf)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001625 goto cont;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001626
Allan Stephensfe13dda2008-04-15 19:03:23 -07001627 /* Ensure message data is a single contiguous unit */
1628
1629 if (unlikely(buf_linearize(buf))) {
1630 goto cont;
1631 }
1632
Allan Stephens85035562008-04-15 19:04:54 -07001633 /* Handle arrival of a non-unicast link message */
1634
1635 msg = buf_msg(buf);
1636
Per Lidenb97bf3f2006-01-02 19:04:38 +01001637 if (unlikely(msg_non_seq(msg))) {
Allan Stephens1265a022008-06-04 17:32:35 -07001638 if (msg_user(msg) == LINK_CONFIG)
1639 tipc_disc_recv_msg(buf, b_ptr);
1640 else
1641 tipc_bclink_recv_pkt(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001642 continue;
1643 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001644
Allan Stephens26008242006-06-25 23:39:31 -07001645 if (unlikely(!msg_short(msg) &&
1646 (msg_destnode(msg) != tipc_own_addr)))
1647 goto cont;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001648
Neil Hormande586572010-03-08 12:43:56 -08001649 /* Discard non-routeable messages destined for another node */
1650
1651 if (unlikely(!msg_isdata(msg) &&
1652 (msg_destnode(msg) != tipc_own_addr))) {
1653 if ((msg_user(msg) != CONN_MANAGER) &&
1654 (msg_user(msg) != MSG_FRAGMENTER))
1655 goto cont;
1656 }
1657
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001658 /* Locate neighboring node that sent message */
Allan Stephens85035562008-04-15 19:04:54 -07001659
Per Liden4323add2006-01-18 00:38:21 +01001660 n_ptr = tipc_node_find(msg_prevnode(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001661 if (unlikely(!n_ptr))
1662 goto cont;
Per Liden4323add2006-01-18 00:38:21 +01001663 tipc_node_lock(n_ptr);
Allan Stephens85035562008-04-15 19:04:54 -07001664
Allan Stephens5a68d5e2010-08-17 11:00:16 +00001665 /* Don't talk to neighbor during cleanup after last session */
1666
1667 if (n_ptr->cleanup_required) {
1668 tipc_node_unlock(n_ptr);
1669 goto cont;
1670 }
1671
1672 /* Locate unicast link endpoint that should handle message */
1673
Per Lidenb97bf3f2006-01-02 19:04:38 +01001674 l_ptr = n_ptr->links[b_ptr->identity];
1675 if (unlikely(!l_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +01001676 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001677 goto cont;
1678 }
Allan Stephens85035562008-04-15 19:04:54 -07001679
1680 /* Validate message sequence number info */
1681
1682 seq_no = msg_seqno(msg);
1683 ackd = msg_ack(msg);
1684
1685 /* Release acked messages */
1686
Per Lidenb97bf3f2006-01-02 19:04:38 +01001687 if (less(n_ptr->bclink.acked, msg_bcast_ack(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01001688 if (tipc_node_is_up(n_ptr) && n_ptr->bclink.supported)
1689 tipc_bclink_acknowledge(n_ptr, msg_bcast_ack(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001690 }
1691
1692 crs = l_ptr->first_out;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001693 while ((crs != l_ptr->next_out) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001694 less_eq(msg_seqno(buf_msg(crs)), ackd)) {
1695 struct sk_buff *next = crs->next;
1696
1697 buf_discard(crs);
1698 crs = next;
1699 released++;
1700 }
1701 if (released) {
1702 l_ptr->first_out = crs;
1703 l_ptr->out_queue_size -= released;
1704 }
Allan Stephens85035562008-04-15 19:04:54 -07001705
1706 /* Try sending any messages link endpoint has pending */
1707
Per Lidenb97bf3f2006-01-02 19:04:38 +01001708 if (unlikely(l_ptr->next_out))
Per Liden4323add2006-01-18 00:38:21 +01001709 tipc_link_push_queue(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001710 if (unlikely(!list_empty(&l_ptr->waiting_ports)))
Per Liden4323add2006-01-18 00:38:21 +01001711 tipc_link_wakeup_ports(l_ptr, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001712 if (unlikely(++l_ptr->unacked_window >= TIPC_MIN_LINK_WIN)) {
1713 l_ptr->stats.sent_acks++;
Per Liden4323add2006-01-18 00:38:21 +01001714 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001715 }
1716
Allan Stephens85035562008-04-15 19:04:54 -07001717 /* Now (finally!) process the incoming message */
1718
Per Lidenb97bf3f2006-01-02 19:04:38 +01001719protocol_check:
1720 if (likely(link_working_working(l_ptr))) {
1721 if (likely(seq_no == mod(l_ptr->next_in_no))) {
1722 l_ptr->next_in_no++;
1723 if (unlikely(l_ptr->oldest_deferred_in))
1724 head = link_insert_deferred_queue(l_ptr,
1725 head);
1726 if (likely(msg_is_dest(msg, tipc_own_addr))) {
1727deliver:
1728 if (likely(msg_isdata(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01001729 tipc_node_unlock(n_ptr);
1730 tipc_port_recv_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001731 continue;
1732 }
1733 switch (msg_user(msg)) {
1734 case MSG_BUNDLER:
1735 l_ptr->stats.recv_bundles++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001736 l_ptr->stats.recv_bundled +=
Per Lidenb97bf3f2006-01-02 19:04:38 +01001737 msg_msgcnt(msg);
Per Liden4323add2006-01-18 00:38:21 +01001738 tipc_node_unlock(n_ptr);
1739 tipc_link_recv_bundle(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001740 continue;
1741 case ROUTE_DISTRIBUTOR:
Per Liden4323add2006-01-18 00:38:21 +01001742 tipc_node_unlock(n_ptr);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00001743 buf_discard(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001744 continue;
1745 case NAME_DISTRIBUTOR:
Per Liden4323add2006-01-18 00:38:21 +01001746 tipc_node_unlock(n_ptr);
1747 tipc_named_recv(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001748 continue;
1749 case CONN_MANAGER:
Per Liden4323add2006-01-18 00:38:21 +01001750 tipc_node_unlock(n_ptr);
1751 tipc_port_recv_proto_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001752 continue;
1753 case MSG_FRAGMENTER:
1754 l_ptr->stats.recv_fragments++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001755 if (tipc_link_recv_fragment(&l_ptr->defragm_buf,
Per Liden4323add2006-01-18 00:38:21 +01001756 &buf, &msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001757 l_ptr->stats.recv_fragmented++;
1758 goto deliver;
1759 }
1760 break;
1761 case CHANGEOVER_PROTOCOL:
1762 type = msg_type(msg);
Per Liden4323add2006-01-18 00:38:21 +01001763 if (link_recv_changeover_msg(&l_ptr, &buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001764 msg = buf_msg(buf);
1765 seq_no = msg_seqno(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001766 if (type == ORIGINAL_MSG)
1767 goto deliver;
1768 goto protocol_check;
1769 }
1770 break;
1771 }
1772 }
Per Liden4323add2006-01-18 00:38:21 +01001773 tipc_node_unlock(n_ptr);
1774 tipc_net_route_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001775 continue;
1776 }
1777 link_handle_out_of_seq_msg(l_ptr, buf);
1778 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001779 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001780 continue;
1781 }
1782
1783 if (msg_user(msg) == LINK_PROTOCOL) {
1784 link_recv_proto_msg(l_ptr, buf);
1785 head = link_insert_deferred_queue(l_ptr, head);
Per Liden4323add2006-01-18 00:38:21 +01001786 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001787 continue;
1788 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001789 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
1790
1791 if (link_working_working(l_ptr)) {
1792 /* Re-insert in front of queue */
Per Lidenb97bf3f2006-01-02 19:04:38 +01001793 buf->next = head;
1794 head = buf;
Per Liden4323add2006-01-18 00:38:21 +01001795 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001796 continue;
1797 }
Per Liden4323add2006-01-18 00:38:21 +01001798 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001799cont:
1800 buf_discard(buf);
1801 }
Per Liden4323add2006-01-18 00:38:21 +01001802 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001803}
1804
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001805/*
1806 * link_defer_buf(): Sort a received out-of-sequence packet
Per Lidenb97bf3f2006-01-02 19:04:38 +01001807 * into the deferred reception queue.
1808 * Returns the increase of the queue length,i.e. 0 or 1
1809 */
1810
Per Liden4323add2006-01-18 00:38:21 +01001811u32 tipc_link_defer_pkt(struct sk_buff **head,
1812 struct sk_buff **tail,
1813 struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001814{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001815 struct sk_buff *prev = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001816 struct sk_buff *crs = *head;
1817 u32 seq_no = msg_seqno(buf_msg(buf));
1818
1819 buf->next = NULL;
1820
1821 /* Empty queue ? */
1822 if (*head == NULL) {
1823 *head = *tail = buf;
1824 return 1;
1825 }
1826
1827 /* Last ? */
1828 if (less(msg_seqno(buf_msg(*tail)), seq_no)) {
1829 (*tail)->next = buf;
1830 *tail = buf;
1831 return 1;
1832 }
1833
1834 /* Scan through queue and sort it in */
1835 do {
1836 struct tipc_msg *msg = buf_msg(crs);
1837
1838 if (less(seq_no, msg_seqno(msg))) {
1839 buf->next = crs;
1840 if (prev)
1841 prev->next = buf;
1842 else
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001843 *head = buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001844 return 1;
1845 }
1846 if (seq_no == msg_seqno(msg)) {
1847 break;
1848 }
1849 prev = crs;
1850 crs = crs->next;
Allan Stephens0e659672010-12-31 18:59:32 +00001851 } while (crs);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001852
1853 /* Message is a duplicate of an existing message */
1854
1855 buf_discard(buf);
1856 return 0;
1857}
1858
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001859/**
Per Lidenb97bf3f2006-01-02 19:04:38 +01001860 * link_handle_out_of_seq_msg - handle arrival of out-of-sequence packet
1861 */
1862
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001863static void link_handle_out_of_seq_msg(struct link *l_ptr,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001864 struct sk_buff *buf)
1865{
1866 u32 seq_no = msg_seqno(buf_msg(buf));
1867
1868 if (likely(msg_user(buf_msg(buf)) == LINK_PROTOCOL)) {
1869 link_recv_proto_msg(l_ptr, buf);
1870 return;
1871 }
1872
Per Lidenb97bf3f2006-01-02 19:04:38 +01001873 /* Record OOS packet arrival (force mismatch on next timeout) */
1874
1875 l_ptr->checkpoint--;
1876
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001877 /*
Per Lidenb97bf3f2006-01-02 19:04:38 +01001878 * Discard packet if a duplicate; otherwise add it to deferred queue
1879 * and notify peer of gap as per protocol specification
1880 */
1881
1882 if (less(seq_no, mod(l_ptr->next_in_no))) {
1883 l_ptr->stats.duplicates++;
1884 buf_discard(buf);
1885 return;
1886 }
1887
Per Liden4323add2006-01-18 00:38:21 +01001888 if (tipc_link_defer_pkt(&l_ptr->oldest_deferred_in,
1889 &l_ptr->newest_deferred_in, buf)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001890 l_ptr->deferred_inqueue_sz++;
1891 l_ptr->stats.deferred_recv++;
1892 if ((l_ptr->deferred_inqueue_sz % 16) == 1)
Per Liden4323add2006-01-18 00:38:21 +01001893 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001894 } else
1895 l_ptr->stats.duplicates++;
1896}
1897
1898/*
1899 * Send protocol message to the other endpoint.
1900 */
Per Liden4323add2006-01-18 00:38:21 +01001901void tipc_link_send_proto_msg(struct link *l_ptr, u32 msg_typ, int probe_msg,
1902 u32 gap, u32 tolerance, u32 priority, u32 ack_mtu)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001903{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001904 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001905 struct tipc_msg *msg = l_ptr->pmsg;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001906 u32 msg_size = sizeof(l_ptr->proto_msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001907
1908 if (link_blocked(l_ptr))
1909 return;
1910 msg_set_type(msg, msg_typ);
1911 msg_set_net_plane(msg, l_ptr->b_ptr->net_plane);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001912 msg_set_bcast_ack(msg, mod(l_ptr->owner->bclink.last_in));
Per Liden4323add2006-01-18 00:38:21 +01001913 msg_set_last_bcast(msg, tipc_bclink_get_last_sent());
Per Lidenb97bf3f2006-01-02 19:04:38 +01001914
1915 if (msg_typ == STATE_MSG) {
1916 u32 next_sent = mod(l_ptr->next_out_no);
1917
Per Liden4323add2006-01-18 00:38:21 +01001918 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001919 return;
1920 if (l_ptr->next_out)
1921 next_sent = msg_seqno(buf_msg(l_ptr->next_out));
1922 msg_set_next_sent(msg, next_sent);
1923 if (l_ptr->oldest_deferred_in) {
1924 u32 rec = msg_seqno(buf_msg(l_ptr->oldest_deferred_in));
1925 gap = mod(rec - mod(l_ptr->next_in_no));
1926 }
1927 msg_set_seq_gap(msg, gap);
1928 if (gap)
1929 l_ptr->stats.sent_nacks++;
1930 msg_set_link_tolerance(msg, tolerance);
1931 msg_set_linkprio(msg, priority);
1932 msg_set_max_pkt(msg, ack_mtu);
1933 msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
1934 msg_set_probe(msg, probe_msg != 0);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001935 if (probe_msg) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001936 u32 mtu = l_ptr->max_pkt;
1937
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001938 if ((mtu < l_ptr->max_pkt_target) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01001939 link_working_working(l_ptr) &&
1940 l_ptr->fsm_msg_cnt) {
1941 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001942 if (l_ptr->max_pkt_probes == 10) {
1943 l_ptr->max_pkt_target = (msg_size - 4);
1944 l_ptr->max_pkt_probes = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001945 msg_size = (mtu + (l_ptr->max_pkt_target - mtu)/2 + 2) & ~3;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001946 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001947 l_ptr->max_pkt_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001948 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001949
1950 l_ptr->stats.sent_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001951 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001952 l_ptr->stats.sent_states++;
1953 } else { /* RESET_MSG or ACTIVATE_MSG */
1954 msg_set_ack(msg, mod(l_ptr->reset_checkpoint - 1));
1955 msg_set_seq_gap(msg, 0);
1956 msg_set_next_sent(msg, 1);
1957 msg_set_link_tolerance(msg, l_ptr->tolerance);
1958 msg_set_linkprio(msg, l_ptr->priority);
1959 msg_set_max_pkt(msg, l_ptr->max_pkt_target);
1960 }
1961
Per Liden4323add2006-01-18 00:38:21 +01001962 if (tipc_node_has_redundant_links(l_ptr->owner)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001963 msg_set_redundant_link(msg);
1964 } else {
1965 msg_clear_redundant_link(msg);
1966 }
1967 msg_set_linkprio(msg, l_ptr->priority);
1968
1969 /* Ensure sequence number will not fit : */
1970
1971 msg_set_seqno(msg, mod(l_ptr->next_out_no + (0xffff/2)));
1972
1973 /* Congestion? */
1974
Per Liden4323add2006-01-18 00:38:21 +01001975 if (tipc_bearer_congested(l_ptr->b_ptr, l_ptr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001976 if (!l_ptr->proto_msg_queue) {
1977 l_ptr->proto_msg_queue =
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001978 tipc_buf_acquire(sizeof(l_ptr->proto_msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001979 }
1980 buf = l_ptr->proto_msg_queue;
1981 if (!buf)
1982 return;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001983 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01001984 return;
1985 }
1986 msg_set_timestamp(msg, jiffies_to_msecs(jiffies));
1987
1988 /* Message can be sent */
1989
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001990 buf = tipc_buf_acquire(msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001991 if (!buf)
1992 return;
1993
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001994 skb_copy_to_linear_data(buf, msg, sizeof(l_ptr->proto_msg));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001995 msg_set_size(buf_msg(buf), msg_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001996
Per Liden4323add2006-01-18 00:38:21 +01001997 if (tipc_bearer_send(l_ptr->b_ptr, buf, &l_ptr->media_addr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001998 l_ptr->unacked_window = 0;
1999 buf_discard(buf);
2000 return;
2001 }
2002
2003 /* New congestion */
Per Liden4323add2006-01-18 00:38:21 +01002004 tipc_bearer_schedule(l_ptr->b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002005 l_ptr->proto_msg_queue = buf;
2006 l_ptr->stats.bearer_congs++;
2007}
2008
2009/*
2010 * Receive protocol message :
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002011 * Note that network plane id propagates through the network, and may
2012 * change at any time. The node with lowest address rules
Per Lidenb97bf3f2006-01-02 19:04:38 +01002013 */
2014
2015static void link_recv_proto_msg(struct link *l_ptr, struct sk_buff *buf)
2016{
2017 u32 rec_gap = 0;
2018 u32 max_pkt_info;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002019 u32 max_pkt_ack;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002020 u32 msg_tol;
2021 struct tipc_msg *msg = buf_msg(buf);
2022
Per Lidenb97bf3f2006-01-02 19:04:38 +01002023 if (link_blocked(l_ptr))
2024 goto exit;
2025
2026 /* record unnumbered packet arrival (force mismatch on next timeout) */
2027
2028 l_ptr->checkpoint--;
2029
2030 if (l_ptr->b_ptr->net_plane != msg_net_plane(msg))
2031 if (tipc_own_addr > msg_prevnode(msg))
2032 l_ptr->b_ptr->net_plane = msg_net_plane(msg);
2033
2034 l_ptr->owner->permit_changeover = msg_redundant_link(msg);
2035
2036 switch (msg_type(msg)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002037
Per Lidenb97bf3f2006-01-02 19:04:38 +01002038 case RESET_MSG:
Allan Stephensa686e682008-06-04 17:29:39 -07002039 if (!link_working_unknown(l_ptr) &&
2040 (l_ptr->peer_session != INVALID_SESSION)) {
Allan Stephensb29f1422010-12-31 18:59:25 +00002041 if (msg_session(msg) == l_ptr->peer_session)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002042 break; /* duplicate: ignore */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002043 }
2044 /* fall thru' */
2045 case ACTIVATE_MSG:
2046 /* Update link settings according other endpoint's values */
2047
2048 strcpy((strrchr(l_ptr->name, ':') + 1), (char *)msg_data(msg));
2049
Allan Stephens2db99832010-12-31 18:59:33 +00002050 msg_tol = msg_link_tolerance(msg);
2051 if (msg_tol > l_ptr->tolerance)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002052 link_set_supervision_props(l_ptr, msg_tol);
2053
2054 if (msg_linkprio(msg) > l_ptr->priority)
2055 l_ptr->priority = msg_linkprio(msg);
2056
2057 max_pkt_info = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002058 if (max_pkt_info) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002059 if (max_pkt_info < l_ptr->max_pkt_target)
2060 l_ptr->max_pkt_target = max_pkt_info;
2061 if (l_ptr->max_pkt > l_ptr->max_pkt_target)
2062 l_ptr->max_pkt = l_ptr->max_pkt_target;
2063 } else {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002064 l_ptr->max_pkt = l_ptr->max_pkt_target;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002065 }
2066 l_ptr->owner->bclink.supported = (max_pkt_info != 0);
2067
2068 link_state_event(l_ptr, msg_type(msg));
2069
2070 l_ptr->peer_session = msg_session(msg);
2071 l_ptr->peer_bearer_id = msg_bearer_id(msg);
2072
2073 /* Synchronize broadcast sequence numbers */
Per Liden4323add2006-01-18 00:38:21 +01002074 if (!tipc_node_has_redundant_links(l_ptr->owner)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002075 l_ptr->owner->bclink.last_in = mod(msg_last_bcast(msg));
2076 }
2077 break;
2078 case STATE_MSG:
2079
Allan Stephens2db99832010-12-31 18:59:33 +00002080 msg_tol = msg_link_tolerance(msg);
2081 if (msg_tol)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002082 link_set_supervision_props(l_ptr, msg_tol);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002083
2084 if (msg_linkprio(msg) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01002085 (msg_linkprio(msg) != l_ptr->priority)) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002086 warn("Resetting link <%s>, priority change %u->%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002087 l_ptr->name, l_ptr->priority, msg_linkprio(msg));
2088 l_ptr->priority = msg_linkprio(msg);
Per Liden4323add2006-01-18 00:38:21 +01002089 tipc_link_reset(l_ptr); /* Enforce change to take effect */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002090 break;
2091 }
2092 link_state_event(l_ptr, TRAFFIC_MSG_EVT);
2093 l_ptr->stats.recv_states++;
2094 if (link_reset_unknown(l_ptr))
2095 break;
2096
2097 if (less_eq(mod(l_ptr->next_in_no), msg_next_sent(msg))) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002098 rec_gap = mod(msg_next_sent(msg) -
Per Lidenb97bf3f2006-01-02 19:04:38 +01002099 mod(l_ptr->next_in_no));
2100 }
2101
2102 max_pkt_ack = msg_max_pkt(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002103 if (max_pkt_ack > l_ptr->max_pkt) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002104 l_ptr->max_pkt = max_pkt_ack;
2105 l_ptr->max_pkt_probes = 0;
2106 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002107
2108 max_pkt_ack = 0;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002109 if (msg_probe(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002110 l_ptr->stats.recv_probes++;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002111 if (msg_size(msg) > sizeof(l_ptr->proto_msg)) {
2112 max_pkt_ack = msg_size(msg);
2113 }
2114 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002115
2116 /* Protocol message before retransmits, reduce loss risk */
2117
Per Liden4323add2006-01-18 00:38:21 +01002118 tipc_bclink_check_gap(l_ptr->owner, msg_last_bcast(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002119
2120 if (rec_gap || (msg_probe(msg))) {
Per Liden4323add2006-01-18 00:38:21 +01002121 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
2122 0, rec_gap, 0, 0, max_pkt_ack);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002123 }
2124 if (msg_seq_gap(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002125 l_ptr->stats.recv_nacks++;
Per Liden4323add2006-01-18 00:38:21 +01002126 tipc_link_retransmit(l_ptr, l_ptr->first_out,
2127 msg_seq_gap(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002128 }
2129 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002130 }
2131exit:
2132 buf_discard(buf);
2133}
2134
2135
2136/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002137 * tipc_link_tunnel(): Send one message via a link belonging to
Per Lidenb97bf3f2006-01-02 19:04:38 +01002138 * another bearer. Owner node is locked.
2139 */
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002140static void tipc_link_tunnel(struct link *l_ptr,
2141 struct tipc_msg *tunnel_hdr,
2142 struct tipc_msg *msg,
2143 u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002144{
2145 struct link *tunnel;
2146 struct sk_buff *buf;
2147 u32 length = msg_size(msg);
2148
2149 tunnel = l_ptr->owner->active_links[selector & 1];
Allan Stephens5392d642006-06-25 23:52:50 -07002150 if (!tipc_link_is_up(tunnel)) {
2151 warn("Link changeover error, "
2152 "tunnel link no longer available\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002153 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002154 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002155 msg_set_size(tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002156 buf = tipc_buf_acquire(length + INT_H_SIZE);
Allan Stephens5392d642006-06-25 23:52:50 -07002157 if (!buf) {
2158 warn("Link changeover error, "
2159 "unable to send tunnel msg\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002160 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002161 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002162 skb_copy_to_linear_data(buf, tunnel_hdr, INT_H_SIZE);
2163 skb_copy_to_linear_data_offset(buf, INT_H_SIZE, msg, length);
Per Liden4323add2006-01-18 00:38:21 +01002164 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002165}
2166
2167
2168
2169/*
2170 * changeover(): Send whole message queue via the remaining link
2171 * Owner node is locked.
2172 */
2173
Per Liden4323add2006-01-18 00:38:21 +01002174void tipc_link_changeover(struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002175{
2176 u32 msgcount = l_ptr->out_queue_size;
2177 struct sk_buff *crs = l_ptr->first_out;
2178 struct link *tunnel = l_ptr->owner->active_links[0];
Per Lidenb97bf3f2006-01-02 19:04:38 +01002179 struct tipc_msg tunnel_hdr;
Allan Stephens5392d642006-06-25 23:52:50 -07002180 int split_bundles;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002181
2182 if (!tunnel)
2183 return;
2184
Allan Stephens5392d642006-06-25 23:52:50 -07002185 if (!l_ptr->owner->permit_changeover) {
2186 warn("Link changeover error, "
2187 "peer did not permit changeover\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002188 return;
Allan Stephens5392d642006-06-25 23:52:50 -07002189 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002190
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002191 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002192 ORIGINAL_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002193 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2194 msg_set_msgcnt(&tunnel_hdr, msgcount);
Allan Stephensf1310722006-06-25 23:51:37 -07002195
Per Lidenb97bf3f2006-01-02 19:04:38 +01002196 if (!l_ptr->first_out) {
2197 struct sk_buff *buf;
2198
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002199 buf = tipc_buf_acquire(INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002200 if (buf) {
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002201 skb_copy_to_linear_data(buf, &tunnel_hdr, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002202 msg_set_size(&tunnel_hdr, INT_H_SIZE);
Per Liden4323add2006-01-18 00:38:21 +01002203 tipc_link_send_buf(tunnel, buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002204 } else {
Allan Stephensa10bd922006-06-25 23:52:17 -07002205 warn("Link changeover error, "
2206 "unable to send changeover msg\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002207 }
2208 return;
2209 }
Allan Stephensf1310722006-06-25 23:51:37 -07002210
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002211 split_bundles = (l_ptr->owner->active_links[0] !=
Allan Stephens5392d642006-06-25 23:52:50 -07002212 l_ptr->owner->active_links[1]);
2213
Per Lidenb97bf3f2006-01-02 19:04:38 +01002214 while (crs) {
2215 struct tipc_msg *msg = buf_msg(crs);
2216
2217 if ((msg_user(msg) == MSG_BUNDLER) && split_bundles) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002218 struct tipc_msg *m = msg_get_wrapped(msg);
Allan Stephens0e659672010-12-31 18:59:32 +00002219 unchar *pos = (unchar *)m;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002220
Florian Westphald788d802007-08-02 19:28:06 -07002221 msgcount = msg_msgcnt(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002222 while (msgcount--) {
Allan Stephens0e659672010-12-31 18:59:32 +00002223 msg_set_seqno(m, msg_seqno(msg));
Per Liden4323add2006-01-18 00:38:21 +01002224 tipc_link_tunnel(l_ptr, &tunnel_hdr, m,
2225 msg_link_selector(m));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002226 pos += align(msg_size(m));
2227 m = (struct tipc_msg *)pos;
2228 }
2229 } else {
Per Liden4323add2006-01-18 00:38:21 +01002230 tipc_link_tunnel(l_ptr, &tunnel_hdr, msg,
2231 msg_link_selector(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002232 }
2233 crs = crs->next;
2234 }
2235}
2236
Per Liden4323add2006-01-18 00:38:21 +01002237void tipc_link_send_duplicate(struct link *l_ptr, struct link *tunnel)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002238{
2239 struct sk_buff *iter;
2240 struct tipc_msg tunnel_hdr;
2241
Allan Stephensc68ca7b2010-05-11 14:30:12 +00002242 tipc_msg_init(&tunnel_hdr, CHANGEOVER_PROTOCOL,
Allan Stephens75715212008-06-04 17:37:34 -07002243 DUPLICATE_MSG, INT_H_SIZE, l_ptr->addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002244 msg_set_msgcnt(&tunnel_hdr, l_ptr->out_queue_size);
2245 msg_set_bearer_id(&tunnel_hdr, l_ptr->peer_bearer_id);
2246 iter = l_ptr->first_out;
2247 while (iter) {
2248 struct sk_buff *outbuf;
2249 struct tipc_msg *msg = buf_msg(iter);
2250 u32 length = msg_size(msg);
2251
2252 if (msg_user(msg) == MSG_BUNDLER)
2253 msg_set_type(msg, CLOSED_MSG);
2254 msg_set_ack(msg, mod(l_ptr->next_in_no - 1)); /* Update */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002255 msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002256 msg_set_size(&tunnel_hdr, length + INT_H_SIZE);
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002257 outbuf = tipc_buf_acquire(length + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002258 if (outbuf == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002259 warn("Link changeover error, "
2260 "unable to send duplicate msg\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002261 return;
2262 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002263 skb_copy_to_linear_data(outbuf, &tunnel_hdr, INT_H_SIZE);
2264 skb_copy_to_linear_data_offset(outbuf, INT_H_SIZE, iter->data,
2265 length);
Per Liden4323add2006-01-18 00:38:21 +01002266 tipc_link_send_buf(tunnel, outbuf);
2267 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002268 return;
2269 iter = iter->next;
2270 }
2271}
2272
2273
2274
2275/**
2276 * buf_extract - extracts embedded TIPC message from another message
2277 * @skb: encapsulating message buffer
2278 * @from_pos: offset to extract from
2279 *
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002280 * Returns a new message buffer containing an embedded message. The
Per Lidenb97bf3f2006-01-02 19:04:38 +01002281 * encapsulating message itself is left unchanged.
2282 */
2283
2284static struct sk_buff *buf_extract(struct sk_buff *skb, u32 from_pos)
2285{
2286 struct tipc_msg *msg = (struct tipc_msg *)(skb->data + from_pos);
2287 u32 size = msg_size(msg);
2288 struct sk_buff *eb;
2289
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002290 eb = tipc_buf_acquire(size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002291 if (eb)
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002292 skb_copy_to_linear_data(eb, msg, size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002293 return eb;
2294}
2295
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002296/*
Per Lidenb97bf3f2006-01-02 19:04:38 +01002297 * link_recv_changeover_msg(): Receive tunneled packet sent
2298 * via other link. Node is locked. Return extracted buffer.
2299 */
2300
2301static int link_recv_changeover_msg(struct link **l_ptr,
2302 struct sk_buff **buf)
2303{
2304 struct sk_buff *tunnel_buf = *buf;
2305 struct link *dest_link;
2306 struct tipc_msg *msg;
2307 struct tipc_msg *tunnel_msg = buf_msg(tunnel_buf);
2308 u32 msg_typ = msg_type(tunnel_msg);
2309 u32 msg_count = msg_msgcnt(tunnel_msg);
2310
2311 dest_link = (*l_ptr)->owner->links[msg_bearer_id(tunnel_msg)];
Allan Stephensb29f1422010-12-31 18:59:25 +00002312 if (!dest_link)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002313 goto exit;
Allan Stephensf1310722006-06-25 23:51:37 -07002314 if (dest_link == *l_ptr) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002315 err("Unexpected changeover message on link <%s>\n",
Allan Stephensf1310722006-06-25 23:51:37 -07002316 (*l_ptr)->name);
2317 goto exit;
2318 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002319 *l_ptr = dest_link;
2320 msg = msg_get_wrapped(tunnel_msg);
2321
2322 if (msg_typ == DUPLICATE_MSG) {
Allan Stephensb29f1422010-12-31 18:59:25 +00002323 if (less(msg_seqno(msg), mod(dest_link->next_in_no)))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002324 goto exit;
Allan Stephens0e659672010-12-31 18:59:32 +00002325 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002326 if (*buf == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002327 warn("Link changeover error, duplicate msg dropped\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002328 goto exit;
2329 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002330 buf_discard(tunnel_buf);
2331 return 1;
2332 }
2333
2334 /* First original message ?: */
2335
Per Liden4323add2006-01-18 00:38:21 +01002336 if (tipc_link_is_up(dest_link)) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002337 info("Resetting link <%s>, changeover initiated by peer\n",
2338 dest_link->name);
Per Liden4323add2006-01-18 00:38:21 +01002339 tipc_link_reset(dest_link);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002340 dest_link->exp_msg_count = msg_count;
2341 if (!msg_count)
2342 goto exit;
2343 } else if (dest_link->exp_msg_count == START_CHANGEOVER) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002344 dest_link->exp_msg_count = msg_count;
2345 if (!msg_count)
2346 goto exit;
2347 }
2348
2349 /* Receive original message */
2350
2351 if (dest_link->exp_msg_count == 0) {
Allan Stephens5392d642006-06-25 23:52:50 -07002352 warn("Link switchover error, "
2353 "got too many tunnelled messages\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002354 goto exit;
2355 }
2356 dest_link->exp_msg_count--;
2357 if (less(msg_seqno(msg), dest_link->reset_checkpoint)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002358 goto exit;
2359 } else {
2360 *buf = buf_extract(tunnel_buf, INT_H_SIZE);
2361 if (*buf != NULL) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002362 buf_discard(tunnel_buf);
2363 return 1;
2364 } else {
Allan Stephensa10bd922006-06-25 23:52:17 -07002365 warn("Link changeover error, original msg dropped\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002366 }
2367 }
2368exit:
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002369 *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002370 buf_discard(tunnel_buf);
2371 return 0;
2372}
2373
2374/*
2375 * Bundler functionality:
2376 */
Per Liden4323add2006-01-18 00:38:21 +01002377void tipc_link_recv_bundle(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002378{
2379 u32 msgcount = msg_msgcnt(buf_msg(buf));
2380 u32 pos = INT_H_SIZE;
2381 struct sk_buff *obuf;
2382
Per Lidenb97bf3f2006-01-02 19:04:38 +01002383 while (msgcount--) {
2384 obuf = buf_extract(buf, pos);
2385 if (obuf == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002386 warn("Link unable to unbundle message(s)\n");
2387 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002388 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002389 pos += align(msg_size(buf_msg(obuf)));
Per Liden4323add2006-01-18 00:38:21 +01002390 tipc_net_route_msg(obuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002391 }
2392 buf_discard(buf);
2393}
2394
2395/*
2396 * Fragmentation/defragmentation:
2397 */
2398
2399
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002400/*
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002401 * link_send_long_buf: Entry for buffers needing fragmentation.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002402 * The buffer is complete, inclusive total message length.
Per Lidenb97bf3f2006-01-02 19:04:38 +01002403 * Returns user data length.
2404 */
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002405static int link_send_long_buf(struct link *l_ptr, struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002406{
2407 struct tipc_msg *inmsg = buf_msg(buf);
2408 struct tipc_msg fragm_hdr;
2409 u32 insize = msg_size(inmsg);
2410 u32 dsz = msg_data_sz(inmsg);
2411 unchar *crs = buf->data;
2412 u32 rest = insize;
Allan Stephens15e979d2010-05-11 14:30:10 +00002413 u32 pack_sz = l_ptr->max_pkt;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002414 u32 fragm_sz = pack_sz - INT_H_SIZE;
2415 u32 fragm_no = 1;
Allan Stephens9c396a72008-06-04 17:36:58 -07002416 u32 destaddr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002417
2418 if (msg_short(inmsg))
2419 destaddr = l_ptr->addr;
Allan Stephens9c396a72008-06-04 17:36:58 -07002420 else
2421 destaddr = msg_destnode(inmsg);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002422
2423 if (msg_routed(inmsg))
2424 msg_set_prevnode(inmsg, tipc_own_addr);
2425
2426 /* 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 msg_set_link_selector(&fragm_hdr, msg_link_selector(inmsg));
2431 msg_set_long_msgno(&fragm_hdr, mod(l_ptr->long_msg_seq_no++));
2432 msg_set_fragm_no(&fragm_hdr, fragm_no);
2433 l_ptr->stats.sent_fragmented++;
2434
2435 /* Chop up message: */
2436
2437 while (rest > 0) {
2438 struct sk_buff *fragm;
2439
2440 if (rest <= fragm_sz) {
2441 fragm_sz = rest;
2442 msg_set_type(&fragm_hdr, LAST_FRAGMENT);
2443 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002444 fragm = tipc_buf_acquire(fragm_sz + INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002445 if (fragm == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -07002446 warn("Link unable to fragment message\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002447 dsz = -ENOMEM;
2448 goto exit;
2449 }
2450 msg_set_size(&fragm_hdr, fragm_sz + INT_H_SIZE);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002451 skb_copy_to_linear_data(fragm, &fragm_hdr, INT_H_SIZE);
2452 skb_copy_to_linear_data_offset(fragm, INT_H_SIZE, crs,
2453 fragm_sz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002454 /* Send queued messages first, if any: */
2455
2456 l_ptr->stats.sent_fragments++;
Per Liden4323add2006-01-18 00:38:21 +01002457 tipc_link_send_buf(l_ptr, fragm);
2458 if (!tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002459 return dsz;
2460 msg_set_fragm_no(&fragm_hdr, ++fragm_no);
2461 rest -= fragm_sz;
2462 crs += fragm_sz;
2463 msg_set_type(&fragm_hdr, FRAGMENT);
2464 }
2465exit:
2466 buf_discard(buf);
2467 return dsz;
2468}
2469
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002470/*
2471 * A pending message being re-assembled must store certain values
2472 * to handle subsequent fragments correctly. The following functions
Per Lidenb97bf3f2006-01-02 19:04:38 +01002473 * help storing these values in unused, available fields in the
2474 * pending message. This makes dynamic memory allocation unecessary.
2475 */
2476
Sam Ravnborg05790c62006-03-20 22:37:04 -08002477static void set_long_msg_seqno(struct sk_buff *buf, u32 seqno)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002478{
2479 msg_set_seqno(buf_msg(buf), seqno);
2480}
2481
Sam Ravnborg05790c62006-03-20 22:37:04 -08002482static u32 get_fragm_size(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002483{
2484 return msg_ack(buf_msg(buf));
2485}
2486
Sam Ravnborg05790c62006-03-20 22:37:04 -08002487static void set_fragm_size(struct sk_buff *buf, u32 sz)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002488{
2489 msg_set_ack(buf_msg(buf), sz);
2490}
2491
Sam Ravnborg05790c62006-03-20 22:37:04 -08002492static u32 get_expected_frags(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002493{
2494 return msg_bcast_ack(buf_msg(buf));
2495}
2496
Sam Ravnborg05790c62006-03-20 22:37:04 -08002497static void set_expected_frags(struct sk_buff *buf, u32 exp)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002498{
2499 msg_set_bcast_ack(buf_msg(buf), exp);
2500}
2501
Sam Ravnborg05790c62006-03-20 22:37:04 -08002502static u32 get_timer_cnt(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002503{
2504 return msg_reroute_cnt(buf_msg(buf));
2505}
2506
Sam Ravnborg05790c62006-03-20 22:37:04 -08002507static void incr_timer_cnt(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002508{
2509 msg_incr_reroute_cnt(buf_msg(buf));
2510}
2511
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002512/*
2513 * tipc_link_recv_fragment(): Called with node lock on. Returns
Per Lidenb97bf3f2006-01-02 19:04:38 +01002514 * the reassembled buffer if message is complete.
2515 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002516int tipc_link_recv_fragment(struct sk_buff **pending, struct sk_buff **fb,
Per Liden4323add2006-01-18 00:38:21 +01002517 struct tipc_msg **m)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002518{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002519 struct sk_buff *prev = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002520 struct sk_buff *fbuf = *fb;
2521 struct tipc_msg *fragm = buf_msg(fbuf);
2522 struct sk_buff *pbuf = *pending;
2523 u32 long_msg_seq_no = msg_long_msgno(fragm);
2524
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002525 *fb = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002526
2527 /* Is there an incomplete message waiting for this fragment? */
2528
Joe Perchesf64f9e72009-11-29 16:55:45 -08002529 while (pbuf && ((msg_seqno(buf_msg(pbuf)) != long_msg_seq_no) ||
2530 (msg_orignode(fragm) != msg_orignode(buf_msg(pbuf))))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002531 prev = pbuf;
2532 pbuf = pbuf->next;
2533 }
2534
2535 if (!pbuf && (msg_type(fragm) == FIRST_FRAGMENT)) {
2536 struct tipc_msg *imsg = (struct tipc_msg *)msg_data(fragm);
2537 u32 msg_sz = msg_size(imsg);
2538 u32 fragm_sz = msg_data_sz(fragm);
2539 u32 exp_fragm_cnt = msg_sz/fragm_sz + !!(msg_sz % fragm_sz);
2540 u32 max = TIPC_MAX_USER_MSG_SIZE + LONG_H_SIZE;
2541 if (msg_type(imsg) == TIPC_MCAST_MSG)
2542 max = TIPC_MAX_USER_MSG_SIZE + MCAST_H_SIZE;
2543 if (msg_size(imsg) > max) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002544 buf_discard(fbuf);
2545 return 0;
2546 }
stephen hemminger31e3c3f2010-10-13 13:20:35 +00002547 pbuf = tipc_buf_acquire(msg_size(imsg));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002548 if (pbuf != NULL) {
2549 pbuf->next = *pending;
2550 *pending = pbuf;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002551 skb_copy_to_linear_data(pbuf, imsg,
2552 msg_data_sz(fragm));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002553 /* Prepare buffer for subsequent fragments. */
2554
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002555 set_long_msg_seqno(pbuf, long_msg_seq_no);
Allan Stephens0e659672010-12-31 18:59:32 +00002556 set_fragm_size(pbuf, fragm_sz);
2557 set_expected_frags(pbuf, exp_fragm_cnt - 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002558 } else {
Allan Stephensa10bd922006-06-25 23:52:17 -07002559 warn("Link unable to reassemble fragmented message\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002560 }
2561 buf_discard(fbuf);
2562 return 0;
2563 } else if (pbuf && (msg_type(fragm) != FIRST_FRAGMENT)) {
2564 u32 dsz = msg_data_sz(fragm);
2565 u32 fsz = get_fragm_size(pbuf);
2566 u32 crs = ((msg_fragm_no(fragm) - 1) * fsz);
2567 u32 exp_frags = get_expected_frags(pbuf) - 1;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002568 skb_copy_to_linear_data_offset(pbuf, crs,
2569 msg_data(fragm), dsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002570 buf_discard(fbuf);
2571
2572 /* Is message complete? */
2573
2574 if (exp_frags == 0) {
2575 if (prev)
2576 prev->next = pbuf->next;
2577 else
2578 *pending = pbuf->next;
2579 msg_reset_reroute_cnt(buf_msg(pbuf));
2580 *fb = pbuf;
2581 *m = buf_msg(pbuf);
2582 return 1;
2583 }
Allan Stephens0e659672010-12-31 18:59:32 +00002584 set_expected_frags(pbuf, exp_frags);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002585 return 0;
2586 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01002587 buf_discard(fbuf);
2588 return 0;
2589}
2590
2591/**
2592 * link_check_defragm_bufs - flush stale incoming message fragments
2593 * @l_ptr: pointer to link
2594 */
2595
2596static void link_check_defragm_bufs(struct link *l_ptr)
2597{
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002598 struct sk_buff *prev = NULL;
2599 struct sk_buff *next = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002600 struct sk_buff *buf = l_ptr->defragm_buf;
2601
2602 if (!buf)
2603 return;
2604 if (!link_working_working(l_ptr))
2605 return;
2606 while (buf) {
2607 u32 cnt = get_timer_cnt(buf);
2608
2609 next = buf->next;
2610 if (cnt < 4) {
2611 incr_timer_cnt(buf);
2612 prev = buf;
2613 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002614 if (prev)
2615 prev->next = buf->next;
2616 else
2617 l_ptr->defragm_buf = buf->next;
2618 buf_discard(buf);
2619 }
2620 buf = next;
2621 }
2622}
2623
2624
2625
2626static void link_set_supervision_props(struct link *l_ptr, u32 tolerance)
2627{
2628 l_ptr->tolerance = tolerance;
2629 l_ptr->continuity_interval =
2630 ((tolerance / 4) > 500) ? 500 : tolerance / 4;
2631 l_ptr->abort_limit = tolerance / (l_ptr->continuity_interval / 4);
2632}
2633
2634
Per Liden4323add2006-01-18 00:38:21 +01002635void tipc_link_set_queue_limits(struct link *l_ptr, u32 window)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002636{
2637 /* Data messages from this node, inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002638 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE] = window;
2639 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE] = (window / 3) * 4;
2640 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE] = (window / 3) * 5;
2641 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE] = (window / 3) * 6;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002642 /* Transiting data messages,inclusive FIRST_FRAGM */
Allan Stephens06d82c92008-03-06 15:06:55 -08002643 l_ptr->queue_limit[TIPC_LOW_IMPORTANCE + 4] = 300;
2644 l_ptr->queue_limit[TIPC_MEDIUM_IMPORTANCE + 4] = 600;
2645 l_ptr->queue_limit[TIPC_HIGH_IMPORTANCE + 4] = 900;
2646 l_ptr->queue_limit[TIPC_CRITICAL_IMPORTANCE + 4] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002647 l_ptr->queue_limit[CONN_MANAGER] = 1200;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002648 l_ptr->queue_limit[CHANGEOVER_PROTOCOL] = 2500;
2649 l_ptr->queue_limit[NAME_DISTRIBUTOR] = 3000;
2650 /* FRAGMENT and LAST_FRAGMENT packets */
2651 l_ptr->queue_limit[MSG_FRAGMENTER] = 4000;
2652}
2653
2654/**
2655 * link_find_link - locate link by name
2656 * @name - ptr to link name string
2657 * @node - ptr to area to be filled with ptr to associated node
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002658 *
Per Liden4323add2006-01-18 00:38:21 +01002659 * Caller must hold 'tipc_net_lock' to ensure node and bearer are not deleted;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002660 * this also prevents link deletion.
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002661 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002662 * Returns pointer to link (or 0 if invalid link name).
2663 */
2664
David S. Miller6c000552008-09-02 23:38:32 -07002665static struct link *link_find_link(const char *name, struct tipc_node **node)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002666{
2667 struct link_name link_name_parts;
2668 struct bearer *b_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002669 struct link *l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002670
2671 if (!link_name_validate(name, &link_name_parts))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002672 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002673
Per Liden4323add2006-01-18 00:38:21 +01002674 b_ptr = tipc_bearer_find_interface(link_name_parts.if_local);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002675 if (!b_ptr)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002676 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002677
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002678 *node = tipc_node_find(link_name_parts.addr_peer);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002679 if (!*node)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002680 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002681
2682 l_ptr = (*node)->links[b_ptr->identity];
2683 if (!l_ptr || strcmp(l_ptr->name, name))
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08002684 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002685
2686 return l_ptr;
2687}
2688
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002689struct sk_buff *tipc_link_cmd_config(const void *req_tlv_area, int req_tlv_space,
Per Liden4323add2006-01-18 00:38:21 +01002690 u16 cmd)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002691{
2692 struct tipc_link_config *args;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002693 u32 new_value;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002694 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002695 struct tipc_node *node;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002696 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002697
2698 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_CONFIG))
Per Liden4323add2006-01-18 00:38:21 +01002699 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002700
2701 args = (struct tipc_link_config *)TLV_DATA(req_tlv_area);
2702 new_value = ntohl(args->value);
2703
Per Liden4323add2006-01-18 00:38:21 +01002704 if (!strcmp(args->name, tipc_bclink_name)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002705 if ((cmd == TIPC_CMD_SET_LINK_WINDOW) &&
Per Liden4323add2006-01-18 00:38:21 +01002706 (tipc_bclink_set_queue_limits(new_value) == 0))
2707 return tipc_cfg_reply_none();
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002708 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
Per Liden4323add2006-01-18 00:38:21 +01002709 " (cannot change setting on broadcast link)");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002710 }
2711
Per Liden4323add2006-01-18 00:38:21 +01002712 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002713 l_ptr = link_find_link(args->name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002714 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002715 read_unlock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002716 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002717 }
2718
Per Liden4323add2006-01-18 00:38:21 +01002719 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002720 res = -EINVAL;
2721 switch (cmd) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002722 case TIPC_CMD_SET_LINK_TOL:
2723 if ((new_value >= TIPC_MIN_LINK_TOL) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01002724 (new_value <= TIPC_MAX_LINK_TOL)) {
2725 link_set_supervision_props(l_ptr, new_value);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002726 tipc_link_send_proto_msg(l_ptr, STATE_MSG,
Per Liden4323add2006-01-18 00:38:21 +01002727 0, 0, new_value, 0, 0);
Allan Stephens0e35fd52008-07-14 22:44:01 -07002728 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002729 }
2730 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002731 case TIPC_CMD_SET_LINK_PRI:
Per Liden16cb4b32006-01-13 22:22:22 +01002732 if ((new_value >= TIPC_MIN_LINK_PRI) &&
2733 (new_value <= TIPC_MAX_LINK_PRI)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002734 l_ptr->priority = 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, 0, new_value, 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_WINDOW:
2741 if ((new_value >= TIPC_MIN_LINK_WIN) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +01002742 (new_value <= TIPC_MAX_LINK_WIN)) {
Per Liden4323add2006-01-18 00:38:21 +01002743 tipc_link_set_queue_limits(l_ptr, new_value);
Allan Stephens0e35fd52008-07-14 22:44:01 -07002744 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002745 }
2746 break;
2747 }
Per Liden4323add2006-01-18 00:38:21 +01002748 tipc_node_unlock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002749
Per Liden4323add2006-01-18 00:38:21 +01002750 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002751 if (res)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002752 return tipc_cfg_reply_error_string("cannot change link setting");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002753
Per Liden4323add2006-01-18 00:38:21 +01002754 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002755}
2756
2757/**
2758 * link_reset_statistics - reset link statistics
2759 * @l_ptr: pointer to link
2760 */
2761
2762static void link_reset_statistics(struct link *l_ptr)
2763{
2764 memset(&l_ptr->stats, 0, sizeof(l_ptr->stats));
2765 l_ptr->stats.sent_info = l_ptr->next_out_no;
2766 l_ptr->stats.recv_info = l_ptr->next_in_no;
2767}
2768
Per Liden4323add2006-01-18 00:38:21 +01002769struct sk_buff *tipc_link_cmd_reset_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002770{
2771 char *link_name;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002772 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002773 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002774
2775 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002776 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002777
2778 link_name = (char *)TLV_DATA(req_tlv_area);
Per Liden4323add2006-01-18 00:38:21 +01002779 if (!strcmp(link_name, tipc_bclink_name)) {
2780 if (tipc_bclink_reset_stats())
2781 return tipc_cfg_reply_error_string("link not found");
2782 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002783 }
2784
Per Liden4323add2006-01-18 00:38:21 +01002785 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002786 l_ptr = link_find_link(link_name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002787 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002788 read_unlock_bh(&tipc_net_lock);
2789 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002790 }
2791
Per Liden4323add2006-01-18 00:38:21 +01002792 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002793 link_reset_statistics(l_ptr);
Per Liden4323add2006-01-18 00:38:21 +01002794 tipc_node_unlock(node);
2795 read_unlock_bh(&tipc_net_lock);
2796 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +01002797}
2798
2799/**
2800 * percent - convert count to a percentage of total (rounding up or down)
2801 */
2802
2803static u32 percent(u32 count, u32 total)
2804{
2805 return (count * 100 + (total / 2)) / total;
2806}
2807
2808/**
Per Liden4323add2006-01-18 00:38:21 +01002809 * tipc_link_stats - print link statistics
Per Lidenb97bf3f2006-01-02 19:04:38 +01002810 * @name: link name
2811 * @buf: print buffer area
2812 * @buf_size: size of print buffer area
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002813 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002814 * Returns length of print buffer data string (or 0 if error)
2815 */
2816
Per Liden4323add2006-01-18 00:38:21 +01002817static int tipc_link_stats(const char *name, char *buf, const u32 buf_size)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002818{
2819 struct print_buf pb;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002820 struct link *l_ptr;
David S. Miller6c000552008-09-02 23:38:32 -07002821 struct tipc_node *node;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002822 char *status;
2823 u32 profile_total = 0;
2824
Per Liden4323add2006-01-18 00:38:21 +01002825 if (!strcmp(name, tipc_bclink_name))
2826 return tipc_bclink_stats(buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002827
Per Liden4323add2006-01-18 00:38:21 +01002828 tipc_printbuf_init(&pb, buf, buf_size);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002829
Per Liden4323add2006-01-18 00:38:21 +01002830 read_lock_bh(&tipc_net_lock);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002831 l_ptr = link_find_link(name, &node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002832 if (!l_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002833 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002834 return 0;
2835 }
Per Liden4323add2006-01-18 00:38:21 +01002836 tipc_node_lock(node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002837
Per Liden4323add2006-01-18 00:38:21 +01002838 if (tipc_link_is_active(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002839 status = "ACTIVE";
Per Liden4323add2006-01-18 00:38:21 +01002840 else if (tipc_link_is_up(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01002841 status = "STANDBY";
2842 else
2843 status = "DEFUNCT";
2844 tipc_printf(&pb, "Link <%s>\n"
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002845 " %s MTU:%u Priority:%u Tolerance:%u ms"
2846 " Window:%u packets\n",
Allan Stephens15e979d2010-05-11 14:30:10 +00002847 l_ptr->name, status, l_ptr->max_pkt,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002848 l_ptr->priority, l_ptr->tolerance, l_ptr->queue_limit[0]);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002849 tipc_printf(&pb, " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002850 l_ptr->next_in_no - l_ptr->stats.recv_info,
2851 l_ptr->stats.recv_fragments,
2852 l_ptr->stats.recv_fragmented,
2853 l_ptr->stats.recv_bundles,
2854 l_ptr->stats.recv_bundled);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002855 tipc_printf(&pb, " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002856 l_ptr->next_out_no - l_ptr->stats.sent_info,
2857 l_ptr->stats.sent_fragments,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002858 l_ptr->stats.sent_fragmented,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002859 l_ptr->stats.sent_bundles,
2860 l_ptr->stats.sent_bundled);
2861 profile_total = l_ptr->stats.msg_length_counts;
2862 if (!profile_total)
2863 profile_total = 1;
2864 tipc_printf(&pb, " TX profile sample:%u packets average:%u octets\n"
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002865 " 0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% "
2866 "-16354:%u%% -32768:%u%% -66000:%u%%\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002867 l_ptr->stats.msg_length_counts,
2868 l_ptr->stats.msg_lengths_total / profile_total,
2869 percent(l_ptr->stats.msg_length_profile[0], profile_total),
2870 percent(l_ptr->stats.msg_length_profile[1], profile_total),
2871 percent(l_ptr->stats.msg_length_profile[2], profile_total),
2872 percent(l_ptr->stats.msg_length_profile[3], profile_total),
2873 percent(l_ptr->stats.msg_length_profile[4], profile_total),
2874 percent(l_ptr->stats.msg_length_profile[5], profile_total),
2875 percent(l_ptr->stats.msg_length_profile[6], profile_total));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002876 tipc_printf(&pb, " RX states:%u probes:%u naks:%u defs:%u dups:%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +01002877 l_ptr->stats.recv_states,
2878 l_ptr->stats.recv_probes,
2879 l_ptr->stats.recv_nacks,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002880 l_ptr->stats.deferred_recv,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002881 l_ptr->stats.duplicates);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002882 tipc_printf(&pb, " TX states:%u probes:%u naks:%u acks:%u dups:%u\n",
2883 l_ptr->stats.sent_states,
2884 l_ptr->stats.sent_probes,
2885 l_ptr->stats.sent_nacks,
2886 l_ptr->stats.sent_acks,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002887 l_ptr->stats.retransmitted);
2888 tipc_printf(&pb, " Congestion bearer:%u link:%u Send queue max:%u avg:%u\n",
2889 l_ptr->stats.bearer_congs,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002890 l_ptr->stats.link_congs,
Per Lidenb97bf3f2006-01-02 19:04:38 +01002891 l_ptr->stats.max_queue_sz,
2892 l_ptr->stats.queue_sz_counts
2893 ? (l_ptr->stats.accu_queue_sz / l_ptr->stats.queue_sz_counts)
2894 : 0);
2895
Per Liden4323add2006-01-18 00:38:21 +01002896 tipc_node_unlock(node);
2897 read_unlock_bh(&tipc_net_lock);
2898 return tipc_printbuf_validate(&pb);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002899}
2900
2901#define MAX_LINK_STATS_INFO 2000
2902
Per Liden4323add2006-01-18 00:38:21 +01002903struct sk_buff *tipc_link_cmd_show_stats(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002904{
2905 struct sk_buff *buf;
2906 struct tlv_desc *rep_tlv;
2907 int str_len;
2908
2909 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_LINK_NAME))
Per Liden4323add2006-01-18 00:38:21 +01002910 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002911
Per Liden4323add2006-01-18 00:38:21 +01002912 buf = tipc_cfg_reply_alloc(TLV_SPACE(MAX_LINK_STATS_INFO));
Per Lidenb97bf3f2006-01-02 19:04:38 +01002913 if (!buf)
2914 return NULL;
2915
2916 rep_tlv = (struct tlv_desc *)buf->data;
2917
Per Liden4323add2006-01-18 00:38:21 +01002918 str_len = tipc_link_stats((char *)TLV_DATA(req_tlv_area),
2919 (char *)TLV_DATA(rep_tlv), MAX_LINK_STATS_INFO);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002920 if (!str_len) {
2921 buf_discard(buf);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002922 return tipc_cfg_reply_error_string("link not found");
Per Lidenb97bf3f2006-01-02 19:04:38 +01002923 }
2924
2925 skb_put(buf, TLV_SPACE(str_len));
2926 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
2927
2928 return buf;
2929}
2930
Per Lidenb97bf3f2006-01-02 19:04:38 +01002931/**
Per Liden4323add2006-01-18 00:38:21 +01002932 * tipc_link_get_max_pkt - get maximum packet size to use when sending to destination
Per Lidenb97bf3f2006-01-02 19:04:38 +01002933 * @dest: network address of destination node
2934 * @selector: used to select from set of active links
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002935 *
Per Lidenb97bf3f2006-01-02 19:04:38 +01002936 * If no active link can be found, uses default maximum packet size.
2937 */
2938
Per Liden4323add2006-01-18 00:38:21 +01002939u32 tipc_link_get_max_pkt(u32 dest, u32 selector)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002940{
David S. Miller6c000552008-09-02 23:38:32 -07002941 struct tipc_node *n_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01002942 struct link *l_ptr;
2943 u32 res = MAX_PKT_DEFAULT;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002944
Per Lidenb97bf3f2006-01-02 19:04:38 +01002945 if (dest == tipc_own_addr)
2946 return MAX_MSG_SIZE;
2947
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002948 read_lock_bh(&tipc_net_lock);
Allan Stephens51a8e4d2010-12-31 18:59:18 +00002949 n_ptr = tipc_node_find(dest);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002950 if (n_ptr) {
Per Liden4323add2006-01-18 00:38:21 +01002951 tipc_node_lock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002952 l_ptr = n_ptr->active_links[selector & 1];
2953 if (l_ptr)
Allan Stephens15e979d2010-05-11 14:30:10 +00002954 res = l_ptr->max_pkt;
Per Liden4323add2006-01-18 00:38:21 +01002955 tipc_node_unlock(n_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002956 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002957 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002958 return res;
2959}
2960
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002961static void link_print(struct link *l_ptr, const char *str)
Per Lidenb97bf3f2006-01-02 19:04:38 +01002962{
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002963 char print_area[256];
2964 struct print_buf pb;
2965 struct print_buf *buf = &pb;
2966
2967 tipc_printbuf_init(buf, print_area, sizeof(print_area));
2968
Per Lidenb97bf3f2006-01-02 19:04:38 +01002969 tipc_printf(buf, str);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002970 tipc_printf(buf, "Link %x<%s>:",
2971 l_ptr->addr, l_ptr->b_ptr->publ.name);
Allan Stephens8d64a5b2010-12-31 18:59:27 +00002972
2973#ifdef CONFIG_TIPC_DEBUG
2974 if (link_reset_reset(l_ptr) || link_reset_unknown(l_ptr))
2975 goto print_state;
2976
Per Lidenb97bf3f2006-01-02 19:04:38 +01002977 tipc_printf(buf, ": NXO(%u):", mod(l_ptr->next_out_no));
2978 tipc_printf(buf, "NXI(%u):", mod(l_ptr->next_in_no));
2979 tipc_printf(buf, "SQUE");
2980 if (l_ptr->first_out) {
2981 tipc_printf(buf, "[%u..", msg_seqno(buf_msg(l_ptr->first_out)));
2982 if (l_ptr->next_out)
2983 tipc_printf(buf, "%u..",
2984 msg_seqno(buf_msg(l_ptr->next_out)));
Allan Stephensb82834e2010-05-11 14:30:04 +00002985 tipc_printf(buf, "%u]", msg_seqno(buf_msg(l_ptr->last_out)));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09002986 if ((mod(msg_seqno(buf_msg(l_ptr->last_out)) -
2987 msg_seqno(buf_msg(l_ptr->first_out)))
Joe Perchesf64f9e72009-11-29 16:55:45 -08002988 != (l_ptr->out_queue_size - 1)) ||
2989 (l_ptr->last_out->next != NULL)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01002990 tipc_printf(buf, "\nSend queue inconsistency\n");
2991 tipc_printf(buf, "first_out= %x ", l_ptr->first_out);
2992 tipc_printf(buf, "next_out= %x ", l_ptr->next_out);
2993 tipc_printf(buf, "last_out= %x ", l_ptr->last_out);
Per Lidenb97bf3f2006-01-02 19:04:38 +01002994 }
2995 } else
2996 tipc_printf(buf, "[]");
2997 tipc_printf(buf, "SQSIZ(%u)", l_ptr->out_queue_size);
2998 if (l_ptr->oldest_deferred_in) {
2999 u32 o = msg_seqno(buf_msg(l_ptr->oldest_deferred_in));
3000 u32 n = msg_seqno(buf_msg(l_ptr->newest_deferred_in));
3001 tipc_printf(buf, ":RQUE[%u..%u]", o, n);
3002 if (l_ptr->deferred_inqueue_sz != mod((n + 1) - o)) {
3003 tipc_printf(buf, ":RQSIZ(%u)",
3004 l_ptr->deferred_inqueue_sz);
3005 }
3006 }
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003007print_state:
3008#endif
3009
Per Lidenb97bf3f2006-01-02 19:04:38 +01003010 if (link_working_unknown(l_ptr))
3011 tipc_printf(buf, ":WU");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003012 else if (link_reset_reset(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01003013 tipc_printf(buf, ":RR");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003014 else if (link_reset_unknown(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01003015 tipc_printf(buf, ":RU");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003016 else if (link_working_working(l_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +01003017 tipc_printf(buf, ":WW");
3018 tipc_printf(buf, "\n");
Allan Stephens8d64a5b2010-12-31 18:59:27 +00003019
3020 tipc_printbuf_validate(buf);
3021 info("%s", print_area);
Per Lidenb97bf3f2006-01-02 19:04:38 +01003022}
3023