blob: f908b804a9686f5a584acb04d61c09ea86e5576c [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
2 * net/tipc/bearer.c: TIPC bearer code
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Per Liden593a5f22006-01-11 19:14:19 +01004 * Copyright (c) 1996-2006, Ericsson AB
Allan Stephens2d627b92011-01-07 13:00:11 -05005 * Copyright (c) 2004-2006, 2010-2011, Wind River Systems
Per Lidenb97bf3f2006-01-02 19:04:38 +01006 * All rights reserved.
7 *
Per Liden9ea1fd32006-01-11 13:30:43 +01008 * Redistribution and use in source and binary forms, with or without
Per Lidenb97bf3f2006-01-02 19:04:38 +01009 * modification, are permitted provided that the following conditions are met:
10 *
Per Liden9ea1fd32006-01-11 13:30:43 +010011 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the names of the copyright holders nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
Per Lidenb97bf3f2006-01-02 19:04:38 +010019 *
Per Liden9ea1fd32006-01-11 13:30:43 +010020 * Alternatively, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") version 2 as published by the Free
22 * Software Foundation.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Per Lidenb97bf3f2006-01-02 19:04:38 +010034 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include "core.h"
38#include "config.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010039#include "bearer.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010040#include "discover.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010041
42#define MAX_ADDR_STR 32
43
Allan Stephensa31abe82011-10-07 09:25:12 -040044static struct media *media_list[MAX_MEDIA];
Allan Stephense3ec9c72010-12-31 18:59:34 +000045static u32 media_count;
Per Lidenb97bf3f2006-01-02 19:04:38 +010046
Allan Stephens2d627b92011-01-07 13:00:11 -050047struct tipc_bearer tipc_bearers[MAX_BEARERS];
Per Lidenb97bf3f2006-01-02 19:04:38 +010048
Allan Stephens3a777ff2011-04-21 13:58:26 -050049static void bearer_disable(struct tipc_bearer *b_ptr);
50
Per Lidenb97bf3f2006-01-02 19:04:38 +010051/**
52 * media_name_valid - validate media name
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090053 *
Per Lidenb97bf3f2006-01-02 19:04:38 +010054 * Returns 1 if media name is valid, otherwise 0.
55 */
56
57static int media_name_valid(const char *name)
58{
59 u32 len;
60
61 len = strlen(name);
62 if ((len + 1) > TIPC_MAX_MEDIA_NAME)
63 return 0;
Eric Dumazeta02cec22010-09-22 20:43:57 +000064 return strspn(name, tipc_alphabet) == len;
Per Lidenb97bf3f2006-01-02 19:04:38 +010065}
66
67/**
68 * media_find - locates specified media object by name
69 */
70
71static struct media *media_find(const char *name)
72{
Per Lidenb97bf3f2006-01-02 19:04:38 +010073 u32 i;
74
Allan Stephensa31abe82011-10-07 09:25:12 -040075 for (i = 0; i < media_count; i++) {
76 if (!strcmp(media_list[i]->name, name))
77 return media_list[i];
Per Lidenb97bf3f2006-01-02 19:04:38 +010078 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -080079 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +010080}
81
82/**
Allan Stephensc79be452011-10-06 16:40:55 -040083 * media_find_id - locates specified media object by type identifier
84 */
85
86static struct media *media_find_id(u8 type)
87{
88 u32 i;
89
90 for (i = 0; i < media_count; i++) {
Allan Stephensa31abe82011-10-07 09:25:12 -040091 if (media_list[i]->type_id == type)
92 return media_list[i];
Allan Stephensc79be452011-10-06 16:40:55 -040093 }
94 return NULL;
95}
96
97/**
Per Lidenb97bf3f2006-01-02 19:04:38 +010098 * tipc_register_media - register a media type
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090099 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100100 * Bearers for this media type must be activated separately at a later stage.
101 */
102
Allan Stephens706767d2011-10-06 15:28:44 -0400103int tipc_register_media(struct media *m_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100104{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100105 int res = -EINVAL;
106
Per Liden4323add2006-01-18 00:38:21 +0100107 write_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100108
Allan Stephens6c349212011-10-07 09:54:44 -0400109 if (!media_name_valid(m_ptr->name))
Neil Hormand0021b22010-03-03 08:31:23 +0000110 goto exit;
Allan Stephens6c349212011-10-07 09:54:44 -0400111 if (m_ptr->bcast_addr.type != htonl(m_ptr->type_id))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100112 goto exit;
Allan Stephens6c349212011-10-07 09:54:44 -0400113 if (m_ptr->priority > TIPC_MAX_LINK_PRI)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100114 goto exit;
Allan Stephens706767d2011-10-06 15:28:44 -0400115 if ((m_ptr->tolerance < TIPC_MIN_LINK_TOL) ||
Allan Stephens6c349212011-10-07 09:54:44 -0400116 (m_ptr->tolerance > TIPC_MAX_LINK_TOL))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100117 goto exit;
Allan Stephens6c349212011-10-07 09:54:44 -0400118 if (media_count >= MAX_MEDIA)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100119 goto exit;
Allan Stephens6c349212011-10-07 09:54:44 -0400120 if (media_find(m_ptr->name) || media_find_id(m_ptr->type_id))
Allan Stephensc79be452011-10-06 16:40:55 -0400121 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100122
Allan Stephensa31abe82011-10-07 09:25:12 -0400123 media_list[media_count] = m_ptr;
Allan Stephensc79be452011-10-06 16:40:55 -0400124 media_count++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100125 res = 0;
126exit:
Per Liden4323add2006-01-18 00:38:21 +0100127 write_unlock_bh(&tipc_net_lock);
Allan Stephens6c349212011-10-07 09:54:44 -0400128 if (res)
129 warn("Media <%s> registration error\n", m_ptr->name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100130 return res;
131}
132
133/**
Per Liden4323add2006-01-18 00:38:21 +0100134 * tipc_media_addr_printf - record media address in print buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100135 */
136
Per Liden4323add2006-01-18 00:38:21 +0100137void tipc_media_addr_printf(struct print_buf *pb, struct tipc_media_addr *a)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100138{
139 struct media *m_ptr;
140 u32 media_type;
141 u32 i;
142
143 media_type = ntohl(a->type);
Allan Stephensa31abe82011-10-07 09:25:12 -0400144 m_ptr = media_find_id(media_type);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100145
Allan Stephensa31abe82011-10-07 09:25:12 -0400146 if (m_ptr && (m_ptr->addr2str != NULL)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100147 char addr_str[MAX_ADDR_STR];
148
Allan Stephense91ed0b2006-10-16 21:44:59 -0700149 tipc_printf(pb, "%s(%s)", m_ptr->name,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100150 m_ptr->addr2str(a, addr_str, sizeof(addr_str)));
151 } else {
152 unchar *addr = (unchar *)&a->dev_addr;
153
Allan Stephense91ed0b2006-10-16 21:44:59 -0700154 tipc_printf(pb, "UNKNOWN(%u)", media_type);
Allan Stephensa0168922010-12-31 18:59:35 +0000155 for (i = 0; i < (sizeof(*a) - sizeof(a->type)); i++)
Allan Stephense91ed0b2006-10-16 21:44:59 -0700156 tipc_printf(pb, "-%02x", addr[i]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100157 }
158}
159
160/**
Per Liden4323add2006-01-18 00:38:21 +0100161 * tipc_media_get_names - record names of registered media in buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100162 */
163
Per Liden4323add2006-01-18 00:38:21 +0100164struct sk_buff *tipc_media_get_names(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100165{
166 struct sk_buff *buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100167 int i;
168
Per Liden4323add2006-01-18 00:38:21 +0100169 buf = tipc_cfg_reply_alloc(MAX_MEDIA * TLV_SPACE(TIPC_MAX_MEDIA_NAME));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100170 if (!buf)
171 return NULL;
172
Per Liden4323add2006-01-18 00:38:21 +0100173 read_lock_bh(&tipc_net_lock);
Allan Stephensa31abe82011-10-07 09:25:12 -0400174 for (i = 0; i < media_count; i++) {
175 tipc_cfg_append_tlv(buf, TIPC_TLV_MEDIA_NAME,
176 media_list[i]->name,
177 strlen(media_list[i]->name) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100178 }
Per Liden4323add2006-01-18 00:38:21 +0100179 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100180 return buf;
181}
182
183/**
184 * bearer_name_validate - validate & (optionally) deconstruct bearer name
185 * @name - ptr to bearer name string
186 * @name_parts - ptr to area for bearer name components (or NULL if not needed)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900187 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100188 * Returns 1 if bearer name is valid, otherwise 0.
189 */
190
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900191static int bearer_name_validate(const char *name,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100192 struct bearer_name *name_parts)
193{
194 char name_copy[TIPC_MAX_BEARER_NAME];
195 char *media_name;
196 char *if_name;
197 u32 media_len;
198 u32 if_len;
199
200 /* copy bearer name & ensure length is OK */
201
202 name_copy[TIPC_MAX_BEARER_NAME - 1] = 0;
203 /* need above in case non-Posix strncpy() doesn't pad with nulls */
204 strncpy(name_copy, name, TIPC_MAX_BEARER_NAME);
205 if (name_copy[TIPC_MAX_BEARER_NAME - 1] != 0)
206 return 0;
207
208 /* ensure all component parts of bearer name are present */
209
210 media_name = name_copy;
Allan Stephens2db99832010-12-31 18:59:33 +0000211 if_name = strchr(media_name, ':');
212 if (if_name == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100213 return 0;
214 *(if_name++) = 0;
215 media_len = if_name - media_name;
216 if_len = strlen(if_name) + 1;
217
218 /* validate component parts of bearer name */
219
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900220 if ((media_len <= 1) || (media_len > TIPC_MAX_MEDIA_NAME) ||
221 (if_len <= 1) || (if_len > TIPC_MAX_IF_NAME) ||
Per Lidenb97bf3f2006-01-02 19:04:38 +0100222 (strspn(media_name, tipc_alphabet) != (media_len - 1)) ||
223 (strspn(if_name, tipc_alphabet) != (if_len - 1)))
224 return 0;
225
226 /* return bearer name components, if necessary */
227
228 if (name_parts) {
229 strcpy(name_parts->media_name, media_name);
230 strcpy(name_parts->if_name, if_name);
231 }
232 return 1;
233}
234
235/**
236 * bearer_find - locates bearer object with matching bearer name
237 */
238
Allan Stephens2d627b92011-01-07 13:00:11 -0500239static struct tipc_bearer *bearer_find(const char *name)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100240{
Allan Stephens2d627b92011-01-07 13:00:11 -0500241 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100242 u32 i;
243
Per Liden4323add2006-01-18 00:38:21 +0100244 for (i = 0, b_ptr = tipc_bearers; i < MAX_BEARERS; i++, b_ptr++) {
Allan Stephens2d627b92011-01-07 13:00:11 -0500245 if (b_ptr->active && (!strcmp(b_ptr->name, name)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100246 return b_ptr;
247 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800248 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100249}
250
251/**
Per Liden4323add2006-01-18 00:38:21 +0100252 * tipc_bearer_find_interface - locates bearer object with matching interface name
Per Lidenb97bf3f2006-01-02 19:04:38 +0100253 */
254
Allan Stephens2d627b92011-01-07 13:00:11 -0500255struct tipc_bearer *tipc_bearer_find_interface(const char *if_name)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100256{
Allan Stephens2d627b92011-01-07 13:00:11 -0500257 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100258 char *b_if_name;
259 u32 i;
260
Per Liden4323add2006-01-18 00:38:21 +0100261 for (i = 0, b_ptr = tipc_bearers; i < MAX_BEARERS; i++, b_ptr++) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100262 if (!b_ptr->active)
263 continue;
Allan Stephens2d627b92011-01-07 13:00:11 -0500264 b_if_name = strchr(b_ptr->name, ':') + 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100265 if (!strcmp(b_if_name, if_name))
266 return b_ptr;
267 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800268 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100269}
270
271/**
Per Liden4323add2006-01-18 00:38:21 +0100272 * tipc_bearer_get_names - record names of bearers in buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100273 */
274
Per Liden4323add2006-01-18 00:38:21 +0100275struct sk_buff *tipc_bearer_get_names(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100276{
277 struct sk_buff *buf;
Allan Stephens2d627b92011-01-07 13:00:11 -0500278 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100279 int i, j;
280
Per Liden4323add2006-01-18 00:38:21 +0100281 buf = tipc_cfg_reply_alloc(MAX_BEARERS * TLV_SPACE(TIPC_MAX_BEARER_NAME));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100282 if (!buf)
283 return NULL;
284
Per Liden4323add2006-01-18 00:38:21 +0100285 read_lock_bh(&tipc_net_lock);
Allan Stephensa31abe82011-10-07 09:25:12 -0400286 for (i = 0; i < media_count; i++) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100287 for (j = 0; j < MAX_BEARERS; j++) {
Per Liden4323add2006-01-18 00:38:21 +0100288 b_ptr = &tipc_bearers[j];
Allan Stephensa31abe82011-10-07 09:25:12 -0400289 if (b_ptr->active && (b_ptr->media == media_list[i])) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900290 tipc_cfg_append_tlv(buf, TIPC_TLV_BEARER_NAME,
Allan Stephens2d627b92011-01-07 13:00:11 -0500291 b_ptr->name,
292 strlen(b_ptr->name) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100293 }
294 }
295 }
Per Liden4323add2006-01-18 00:38:21 +0100296 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100297 return buf;
298}
299
Allan Stephens2d627b92011-01-07 13:00:11 -0500300void tipc_bearer_add_dest(struct tipc_bearer *b_ptr, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100301{
Per Liden4323add2006-01-18 00:38:21 +0100302 tipc_nmap_add(&b_ptr->nodes, dest);
Per Liden4323add2006-01-18 00:38:21 +0100303 tipc_bcbearer_sort();
Allan Stephens12099662011-04-21 19:05:25 -0500304 tipc_disc_add_dest(b_ptr->link_req);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100305}
306
Allan Stephens2d627b92011-01-07 13:00:11 -0500307void tipc_bearer_remove_dest(struct tipc_bearer *b_ptr, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100308{
Per Liden4323add2006-01-18 00:38:21 +0100309 tipc_nmap_remove(&b_ptr->nodes, dest);
Per Liden4323add2006-01-18 00:38:21 +0100310 tipc_bcbearer_sort();
Allan Stephens12099662011-04-21 19:05:25 -0500311 tipc_disc_remove_dest(b_ptr->link_req);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100312}
313
314/*
315 * bearer_push(): Resolve bearer congestion. Force the waiting
316 * links to push out their unsent packets, one packet per link
317 * per iteration, until all packets are gone or congestion reoccurs.
Per Liden4323add2006-01-18 00:38:21 +0100318 * 'tipc_net_lock' is read_locked when this function is called
Per Lidenb97bf3f2006-01-02 19:04:38 +0100319 * bearer.lock must be taken before calling
320 * Returns binary true(1) ore false(0)
321 */
Allan Stephens2d627b92011-01-07 13:00:11 -0500322static int bearer_push(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100323{
Allan Stephens0e35fd52008-07-14 22:44:01 -0700324 u32 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100325 struct link *ln, *tln;
326
Allan Stephens2d627b92011-01-07 13:00:11 -0500327 if (b_ptr->blocked)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100328 return 0;
329
330 while (!list_empty(&b_ptr->cong_links) && (res != PUSH_FAILED)) {
331 list_for_each_entry_safe(ln, tln, &b_ptr->cong_links, link_list) {
Per Liden4323add2006-01-18 00:38:21 +0100332 res = tipc_link_push_packet(ln);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100333 if (res == PUSH_FAILED)
334 break;
335 if (res == PUSH_FINISHED)
336 list_move_tail(&ln->link_list, &b_ptr->links);
337 }
338 }
339 return list_empty(&b_ptr->cong_links);
340}
341
Allan Stephens2d627b92011-01-07 13:00:11 -0500342void tipc_bearer_lock_push(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100343{
Allan Stephens2d627b92011-01-07 13:00:11 -0500344 spin_lock_bh(&b_ptr->lock);
Allan Stephens23f0ff92011-04-07 11:25:26 -0400345 bearer_push(b_ptr);
Allan Stephens2d627b92011-01-07 13:00:11 -0500346 spin_unlock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100347}
348
349
350/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900351 * Interrupt enabling new requests after bearer congestion or blocking:
352 * See bearer_send().
Per Lidenb97bf3f2006-01-02 19:04:38 +0100353 */
Allan Stephens2d627b92011-01-07 13:00:11 -0500354void tipc_continue(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100355{
Allan Stephens2d627b92011-01-07 13:00:11 -0500356 spin_lock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100357 if (!list_empty(&b_ptr->cong_links))
Per Liden4323add2006-01-18 00:38:21 +0100358 tipc_k_signal((Handler)tipc_bearer_lock_push, (unsigned long)b_ptr);
Allan Stephens2d627b92011-01-07 13:00:11 -0500359 b_ptr->blocked = 0;
360 spin_unlock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100361}
362
363/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900364 * Schedule link for sending of messages after the bearer
365 * has been deblocked by 'continue()'. This method is called
366 * when somebody tries to send a message via this link while
Per Liden4323add2006-01-18 00:38:21 +0100367 * the bearer is congested. 'tipc_net_lock' is in read_lock here
Per Lidenb97bf3f2006-01-02 19:04:38 +0100368 * bearer.lock is busy
369 */
370
Allan Stephens2d627b92011-01-07 13:00:11 -0500371static void tipc_bearer_schedule_unlocked(struct tipc_bearer *b_ptr, struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100372{
373 list_move_tail(&l_ptr->link_list, &b_ptr->cong_links);
374}
375
376/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900377 * Schedule link for sending of messages after the bearer
378 * has been deblocked by 'continue()'. This method is called
379 * when somebody tries to send a message via this link while
Per Liden4323add2006-01-18 00:38:21 +0100380 * the bearer is congested. 'tipc_net_lock' is in read_lock here,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100381 * bearer.lock is free
382 */
383
Allan Stephens2d627b92011-01-07 13:00:11 -0500384void tipc_bearer_schedule(struct tipc_bearer *b_ptr, struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100385{
Allan Stephens2d627b92011-01-07 13:00:11 -0500386 spin_lock_bh(&b_ptr->lock);
Per Liden4323add2006-01-18 00:38:21 +0100387 tipc_bearer_schedule_unlocked(b_ptr, l_ptr);
Allan Stephens2d627b92011-01-07 13:00:11 -0500388 spin_unlock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100389}
390
391
392/*
Per Liden4323add2006-01-18 00:38:21 +0100393 * tipc_bearer_resolve_congestion(): Check if there is bearer congestion,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100394 * and if there is, try to resolve it before returning.
Per Liden4323add2006-01-18 00:38:21 +0100395 * 'tipc_net_lock' is read_locked when this function is called
Per Lidenb97bf3f2006-01-02 19:04:38 +0100396 */
Allan Stephens2d627b92011-01-07 13:00:11 -0500397int tipc_bearer_resolve_congestion(struct tipc_bearer *b_ptr, struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100398{
399 int res = 1;
400
401 if (list_empty(&b_ptr->cong_links))
402 return 1;
Allan Stephens2d627b92011-01-07 13:00:11 -0500403 spin_lock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100404 if (!bearer_push(b_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +0100405 tipc_bearer_schedule_unlocked(b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100406 res = 0;
407 }
Allan Stephens2d627b92011-01-07 13:00:11 -0500408 spin_unlock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100409 return res;
410}
411
Allan Stephensb274f4a2010-05-11 14:30:16 +0000412/**
413 * tipc_bearer_congested - determines if bearer is currently congested
414 */
415
Allan Stephens2d627b92011-01-07 13:00:11 -0500416int tipc_bearer_congested(struct tipc_bearer *b_ptr, struct link *l_ptr)
Allan Stephensb274f4a2010-05-11 14:30:16 +0000417{
Allan Stephens2d627b92011-01-07 13:00:11 -0500418 if (unlikely(b_ptr->blocked))
Allan Stephensb274f4a2010-05-11 14:30:16 +0000419 return 1;
420 if (likely(list_empty(&b_ptr->cong_links)))
421 return 0;
422 return !tipc_bearer_resolve_congestion(b_ptr, l_ptr);
423}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100424
425/**
426 * tipc_enable_bearer - enable bearer with the given name
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900427 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100428
Allan Stephens50d3e632011-02-28 14:56:15 -0500429int tipc_enable_bearer(const char *name, u32 disc_domain, u32 priority)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100430{
Allan Stephens2d627b92011-01-07 13:00:11 -0500431 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100432 struct media *m_ptr;
433 struct bearer_name b_name;
434 char addr_string[16];
435 u32 bearer_id;
436 u32 with_this_prio;
437 u32 i;
438 int res = -EINVAL;
439
Allan Stephensa10bd922006-06-25 23:52:17 -0700440 if (tipc_mode != TIPC_NET_MODE) {
441 warn("Bearer <%s> rejected, not supported in standalone mode\n",
442 name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100443 return -ENOPROTOOPT;
Allan Stephensa10bd922006-06-25 23:52:17 -0700444 }
445 if (!bearer_name_validate(name, &b_name)) {
446 warn("Bearer <%s> rejected, illegal name\n", name);
Per Liden16cb4b32006-01-13 22:22:22 +0100447 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700448 }
Allan Stephens66e019a2011-04-20 16:24:07 -0500449 if (tipc_addr_domain_valid(disc_domain) &&
450 (disc_domain != tipc_own_addr)) {
451 if (tipc_in_scope(disc_domain, tipc_own_addr)) {
452 disc_domain = tipc_own_addr & TIPC_CLUSTER_MASK;
453 res = 0; /* accept any node in own cluster */
454 } else if (in_own_cluster(disc_domain))
455 res = 0; /* accept specified node in own cluster */
456 }
457 if (res) {
Allan Stephens50d3e632011-02-28 14:56:15 -0500458 warn("Bearer <%s> rejected, illegal discovery domain\n", name);
Allan Stephensa10bd922006-06-25 23:52:17 -0700459 return -EINVAL;
460 }
Per Liden16cb4b32006-01-13 22:22:22 +0100461 if ((priority < TIPC_MIN_LINK_PRI ||
462 priority > TIPC_MAX_LINK_PRI) &&
Allan Stephensa10bd922006-06-25 23:52:17 -0700463 (priority != TIPC_MEDIA_LINK_PRI)) {
464 warn("Bearer <%s> rejected, illegal priority\n", name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100465 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700466 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100467
Per Liden4323add2006-01-18 00:38:21 +0100468 write_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100469
470 m_ptr = media_find(b_name.media_name);
471 if (!m_ptr) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700472 warn("Bearer <%s> rejected, media <%s> not registered\n", name,
473 b_name.media_name);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500474 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100475 }
Per Liden16cb4b32006-01-13 22:22:22 +0100476
477 if (priority == TIPC_MEDIA_LINK_PRI)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100478 priority = m_ptr->priority;
479
480restart:
481 bearer_id = MAX_BEARERS;
482 with_this_prio = 1;
483 for (i = MAX_BEARERS; i-- != 0; ) {
Per Liden4323add2006-01-18 00:38:21 +0100484 if (!tipc_bearers[i].active) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100485 bearer_id = i;
486 continue;
487 }
Allan Stephens2d627b92011-01-07 13:00:11 -0500488 if (!strcmp(name, tipc_bearers[i].name)) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700489 warn("Bearer <%s> rejected, already enabled\n", name);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500490 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100491 }
Per Liden4323add2006-01-18 00:38:21 +0100492 if ((tipc_bearers[i].priority == priority) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100493 (++with_this_prio > 2)) {
494 if (priority-- == 0) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700495 warn("Bearer <%s> rejected, duplicate priority\n",
496 name);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500497 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100498 }
Allan Stephensa10bd922006-06-25 23:52:17 -0700499 warn("Bearer <%s> priority adjustment required %u->%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100500 name, priority + 1, priority);
501 goto restart;
502 }
503 }
504 if (bearer_id >= MAX_BEARERS) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900505 warn("Bearer <%s> rejected, bearer limit reached (%u)\n",
Allan Stephensa10bd922006-06-25 23:52:17 -0700506 name, MAX_BEARERS);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500507 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100508 }
509
Per Liden4323add2006-01-18 00:38:21 +0100510 b_ptr = &tipc_bearers[bearer_id];
Allan Stephens2d627b92011-01-07 13:00:11 -0500511 strcpy(b_ptr->name, name);
512 res = m_ptr->enable_bearer(b_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100513 if (res) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700514 warn("Bearer <%s> rejected, enable failure (%d)\n", name, -res);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500515 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100516 }
517
518 b_ptr->identity = bearer_id;
519 b_ptr->media = m_ptr;
520 b_ptr->net_plane = bearer_id + 'A';
521 b_ptr->active = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100522 b_ptr->priority = priority;
523 INIT_LIST_HEAD(&b_ptr->cong_links);
524 INIT_LIST_HEAD(&b_ptr->links);
Allan Stephens2d627b92011-01-07 13:00:11 -0500525 spin_lock_init(&b_ptr->lock);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500526
527 res = tipc_disc_create(b_ptr, &m_ptr->bcast_addr, disc_domain);
528 if (res) {
529 bearer_disable(b_ptr);
530 warn("Bearer <%s> rejected, discovery object creation failed\n",
531 name);
532 goto exit;
533 }
Per Liden16cb4b32006-01-13 22:22:22 +0100534 info("Enabled bearer <%s>, discovery domain %s, priority %u\n",
Allan Stephens50d3e632011-02-28 14:56:15 -0500535 name, tipc_addr_string_fill(addr_string, disc_domain), priority);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500536exit:
Per Liden4323add2006-01-18 00:38:21 +0100537 write_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100538 return res;
539}
540
541/**
542 * tipc_block_bearer(): Block the bearer with the given name,
543 * and reset all its links
544 */
545
546int tipc_block_bearer(const char *name)
547{
Allan Stephens2d627b92011-01-07 13:00:11 -0500548 struct tipc_bearer *b_ptr = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100549 struct link *l_ptr;
550 struct link *temp_l_ptr;
551
Per Liden4323add2006-01-18 00:38:21 +0100552 read_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100553 b_ptr = bearer_find(name);
554 if (!b_ptr) {
555 warn("Attempt to block unknown bearer <%s>\n", name);
Per Liden4323add2006-01-18 00:38:21 +0100556 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100557 return -EINVAL;
558 }
559
Allan Stephensa10bd922006-06-25 23:52:17 -0700560 info("Blocking bearer <%s>\n", name);
Allan Stephens2d627b92011-01-07 13:00:11 -0500561 spin_lock_bh(&b_ptr->lock);
562 b_ptr->blocked = 1;
Allan Stephens4b3743e2011-05-26 13:59:17 -0400563 list_splice_init(&b_ptr->cong_links, &b_ptr->links);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100564 list_for_each_entry_safe(l_ptr, temp_l_ptr, &b_ptr->links, link_list) {
David S. Miller6c000552008-09-02 23:38:32 -0700565 struct tipc_node *n_ptr = l_ptr->owner;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100566
567 spin_lock_bh(&n_ptr->lock);
Per Liden4323add2006-01-18 00:38:21 +0100568 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100569 spin_unlock_bh(&n_ptr->lock);
570 }
Allan Stephens2d627b92011-01-07 13:00:11 -0500571 spin_unlock_bh(&b_ptr->lock);
Per Liden4323add2006-01-18 00:38:21 +0100572 read_unlock_bh(&tipc_net_lock);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700573 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100574}
575
576/**
577 * bearer_disable -
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900578 *
Per Liden4323add2006-01-18 00:38:21 +0100579 * Note: This routine assumes caller holds tipc_net_lock.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100580 */
581
Allan Stephens2d627b92011-01-07 13:00:11 -0500582static void bearer_disable(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100583{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100584 struct link *l_ptr;
585 struct link *temp_l_ptr;
586
Allan Stephens2d627b92011-01-07 13:00:11 -0500587 info("Disabling bearer <%s>\n", b_ptr->name);
Allan Stephens2d627b92011-01-07 13:00:11 -0500588 spin_lock_bh(&b_ptr->lock);
Allan Stephens2d627b92011-01-07 13:00:11 -0500589 b_ptr->blocked = 1;
590 b_ptr->media->disable_bearer(b_ptr);
Allan Stephens4b3743e2011-05-26 13:59:17 -0400591 list_splice_init(&b_ptr->cong_links, &b_ptr->links);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100592 list_for_each_entry_safe(l_ptr, temp_l_ptr, &b_ptr->links, link_list) {
Per Liden4323add2006-01-18 00:38:21 +0100593 tipc_link_delete(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100594 }
Allan Stephens3a777ff2011-04-21 13:58:26 -0500595 if (b_ptr->link_req)
596 tipc_disc_delete(b_ptr->link_req);
Allan Stephens2d627b92011-01-07 13:00:11 -0500597 spin_unlock_bh(&b_ptr->lock);
598 memset(b_ptr, 0, sizeof(struct tipc_bearer));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100599}
600
601int tipc_disable_bearer(const char *name)
602{
Allan Stephens2d627b92011-01-07 13:00:11 -0500603 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100604 int res;
605
Per Liden4323add2006-01-18 00:38:21 +0100606 write_lock_bh(&tipc_net_lock);
Allan Stephensccc901e2010-10-14 13:58:26 +0000607 b_ptr = bearer_find(name);
608 if (b_ptr == NULL) {
609 warn("Attempt to disable unknown bearer <%s>\n", name);
610 res = -EINVAL;
Allan Stephens28cc9372010-11-30 12:00:56 +0000611 } else {
612 bearer_disable(b_ptr);
613 res = 0;
614 }
Per Liden4323add2006-01-18 00:38:21 +0100615 write_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100616 return res;
617}
618
619
620
Per Liden4323add2006-01-18 00:38:21 +0100621void tipc_bearer_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100622{
623 u32 i;
624
Per Lidenb97bf3f2006-01-02 19:04:38 +0100625 for (i = 0; i < MAX_BEARERS; i++) {
Per Liden4323add2006-01-18 00:38:21 +0100626 if (tipc_bearers[i].active)
Allan Stephensccc901e2010-10-14 13:58:26 +0000627 bearer_disable(&tipc_bearers[i]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100628 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100629 media_count = 0;
630}