blob: 75af271b9cfa4a87d42c8ea1045956dd8c83c0ae [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
Neil Hormand0021b22010-03-03 08:31:23 +000044static 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{
73 struct media *m_ptr;
74 u32 i;
75
76 for (i = 0, m_ptr = media_list; i < media_count; i++, m_ptr++) {
77 if (!strcmp(m_ptr->name, name))
78 return m_ptr;
79 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -080080 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +010081}
82
83/**
84 * tipc_register_media - register a media type
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090085 *
Per Lidenb97bf3f2006-01-02 19:04:38 +010086 * Bearers for this media type must be activated separately at a later stage.
87 */
88
Allan Stephens706767d2011-10-06 15:28:44 -040089int tipc_register_media(struct media *m_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +010090{
Per Lidenb97bf3f2006-01-02 19:04:38 +010091 u32 media_id;
92 u32 i;
93 int res = -EINVAL;
94
Per Liden4323add2006-01-18 00:38:21 +010095 write_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +010096
Neil Hormand0021b22010-03-03 08:31:23 +000097 if (tipc_mode != TIPC_NET_MODE) {
Allan Stephens706767d2011-10-06 15:28:44 -040098 warn("Media <%s> rejected, not in networked mode yet\n",
99 m_ptr->name);
Neil Hormand0021b22010-03-03 08:31:23 +0000100 goto exit;
101 }
Allan Stephens706767d2011-10-06 15:28:44 -0400102 if (!media_name_valid(m_ptr->name)) {
103 warn("Media <%s> rejected, illegal name\n", m_ptr->name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100104 goto exit;
105 }
Allan Stephens706767d2011-10-06 15:28:44 -0400106 if (m_ptr->bcast_addr.type != htonl(m_ptr->type_id)) {
107 warn("Media <%s> rejected, illegal broadcast address\n",
108 m_ptr->name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100109 goto exit;
110 }
Allan Stephens706767d2011-10-06 15:28:44 -0400111 if ((m_ptr->priority < TIPC_MIN_LINK_PRI) ||
112 (m_ptr->priority > TIPC_MAX_LINK_PRI)) {
113 warn("Media <%s> rejected, illegal priority (%u)\n",
114 m_ptr->name, m_ptr->priority);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100115 goto exit;
116 }
Allan Stephens706767d2011-10-06 15:28:44 -0400117 if ((m_ptr->tolerance < TIPC_MIN_LINK_TOL) ||
118 (m_ptr->tolerance > TIPC_MAX_LINK_TOL)) {
119 warn("Media <%s> rejected, illegal tolerance (%u)\n",
120 m_ptr->name, m_ptr->tolerance);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100121 goto exit;
122 }
123
124 media_id = media_count++;
125 if (media_id >= MAX_MEDIA) {
Allan Stephens706767d2011-10-06 15:28:44 -0400126 warn("Media <%s> rejected, media limit reached (%u)\n",
127 m_ptr->name, MAX_MEDIA);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100128 media_count--;
129 goto exit;
130 }
131 for (i = 0; i < media_id; i++) {
Allan Stephens706767d2011-10-06 15:28:44 -0400132 if (media_list[i].type_id == m_ptr->type_id) {
133 warn("Media <%s> rejected, duplicate type (%u)\n",
134 m_ptr->name, m_ptr->type_id);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100135 media_count--;
136 goto exit;
137 }
Allan Stephens706767d2011-10-06 15:28:44 -0400138 if (!strcmp(m_ptr->name, media_list[i].name)) {
139 warn("Media <%s> rejected, duplicate name\n",
140 m_ptr->name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100141 media_count--;
142 goto exit;
143 }
144 }
145
Allan Stephens706767d2011-10-06 15:28:44 -0400146 media_list[media_id] = *m_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100147 res = 0;
148exit:
Per Liden4323add2006-01-18 00:38:21 +0100149 write_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100150 return res;
151}
152
153/**
Per Liden4323add2006-01-18 00:38:21 +0100154 * tipc_media_addr_printf - record media address in print buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100155 */
156
Per Liden4323add2006-01-18 00:38:21 +0100157void tipc_media_addr_printf(struct print_buf *pb, struct tipc_media_addr *a)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100158{
159 struct media *m_ptr;
160 u32 media_type;
161 u32 i;
162
163 media_type = ntohl(a->type);
164 for (i = 0, m_ptr = media_list; i < media_count; i++, m_ptr++) {
165 if (m_ptr->type_id == media_type)
166 break;
167 }
168
169 if ((i < media_count) && (m_ptr->addr2str != NULL)) {
170 char addr_str[MAX_ADDR_STR];
171
Allan Stephense91ed0b2006-10-16 21:44:59 -0700172 tipc_printf(pb, "%s(%s)", m_ptr->name,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100173 m_ptr->addr2str(a, addr_str, sizeof(addr_str)));
174 } else {
175 unchar *addr = (unchar *)&a->dev_addr;
176
Allan Stephense91ed0b2006-10-16 21:44:59 -0700177 tipc_printf(pb, "UNKNOWN(%u)", media_type);
Allan Stephensa0168922010-12-31 18:59:35 +0000178 for (i = 0; i < (sizeof(*a) - sizeof(a->type)); i++)
Allan Stephense91ed0b2006-10-16 21:44:59 -0700179 tipc_printf(pb, "-%02x", addr[i]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100180 }
181}
182
183/**
Per Liden4323add2006-01-18 00:38:21 +0100184 * tipc_media_get_names - record names of registered media in buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100185 */
186
Per Liden4323add2006-01-18 00:38:21 +0100187struct sk_buff *tipc_media_get_names(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100188{
189 struct sk_buff *buf;
190 struct media *m_ptr;
191 int i;
192
Per Liden4323add2006-01-18 00:38:21 +0100193 buf = tipc_cfg_reply_alloc(MAX_MEDIA * TLV_SPACE(TIPC_MAX_MEDIA_NAME));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100194 if (!buf)
195 return NULL;
196
Per Liden4323add2006-01-18 00:38:21 +0100197 read_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100198 for (i = 0, m_ptr = media_list; i < media_count; i++, m_ptr++) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900199 tipc_cfg_append_tlv(buf, TIPC_TLV_MEDIA_NAME, m_ptr->name,
Per Liden4323add2006-01-18 00:38:21 +0100200 strlen(m_ptr->name) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100201 }
Per Liden4323add2006-01-18 00:38:21 +0100202 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100203 return buf;
204}
205
206/**
207 * bearer_name_validate - validate & (optionally) deconstruct bearer name
208 * @name - ptr to bearer name string
209 * @name_parts - ptr to area for bearer name components (or NULL if not needed)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900210 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100211 * Returns 1 if bearer name is valid, otherwise 0.
212 */
213
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900214static int bearer_name_validate(const char *name,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100215 struct bearer_name *name_parts)
216{
217 char name_copy[TIPC_MAX_BEARER_NAME];
218 char *media_name;
219 char *if_name;
220 u32 media_len;
221 u32 if_len;
222
223 /* copy bearer name & ensure length is OK */
224
225 name_copy[TIPC_MAX_BEARER_NAME - 1] = 0;
226 /* need above in case non-Posix strncpy() doesn't pad with nulls */
227 strncpy(name_copy, name, TIPC_MAX_BEARER_NAME);
228 if (name_copy[TIPC_MAX_BEARER_NAME - 1] != 0)
229 return 0;
230
231 /* ensure all component parts of bearer name are present */
232
233 media_name = name_copy;
Allan Stephens2db99832010-12-31 18:59:33 +0000234 if_name = strchr(media_name, ':');
235 if (if_name == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100236 return 0;
237 *(if_name++) = 0;
238 media_len = if_name - media_name;
239 if_len = strlen(if_name) + 1;
240
241 /* validate component parts of bearer name */
242
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900243 if ((media_len <= 1) || (media_len > TIPC_MAX_MEDIA_NAME) ||
244 (if_len <= 1) || (if_len > TIPC_MAX_IF_NAME) ||
Per Lidenb97bf3f2006-01-02 19:04:38 +0100245 (strspn(media_name, tipc_alphabet) != (media_len - 1)) ||
246 (strspn(if_name, tipc_alphabet) != (if_len - 1)))
247 return 0;
248
249 /* return bearer name components, if necessary */
250
251 if (name_parts) {
252 strcpy(name_parts->media_name, media_name);
253 strcpy(name_parts->if_name, if_name);
254 }
255 return 1;
256}
257
258/**
259 * bearer_find - locates bearer object with matching bearer name
260 */
261
Allan Stephens2d627b92011-01-07 13:00:11 -0500262static struct tipc_bearer *bearer_find(const char *name)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100263{
Allan Stephens2d627b92011-01-07 13:00:11 -0500264 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100265 u32 i;
266
Per Liden4323add2006-01-18 00:38:21 +0100267 for (i = 0, b_ptr = tipc_bearers; i < MAX_BEARERS; i++, b_ptr++) {
Allan Stephens2d627b92011-01-07 13:00:11 -0500268 if (b_ptr->active && (!strcmp(b_ptr->name, name)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100269 return b_ptr;
270 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800271 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100272}
273
274/**
Per Liden4323add2006-01-18 00:38:21 +0100275 * tipc_bearer_find_interface - locates bearer object with matching interface name
Per Lidenb97bf3f2006-01-02 19:04:38 +0100276 */
277
Allan Stephens2d627b92011-01-07 13:00:11 -0500278struct tipc_bearer *tipc_bearer_find_interface(const char *if_name)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100279{
Allan Stephens2d627b92011-01-07 13:00:11 -0500280 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100281 char *b_if_name;
282 u32 i;
283
Per Liden4323add2006-01-18 00:38:21 +0100284 for (i = 0, b_ptr = tipc_bearers; i < MAX_BEARERS; i++, b_ptr++) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100285 if (!b_ptr->active)
286 continue;
Allan Stephens2d627b92011-01-07 13:00:11 -0500287 b_if_name = strchr(b_ptr->name, ':') + 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100288 if (!strcmp(b_if_name, if_name))
289 return b_ptr;
290 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800291 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100292}
293
294/**
Per Liden4323add2006-01-18 00:38:21 +0100295 * tipc_bearer_get_names - record names of bearers in buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100296 */
297
Per Liden4323add2006-01-18 00:38:21 +0100298struct sk_buff *tipc_bearer_get_names(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100299{
300 struct sk_buff *buf;
301 struct media *m_ptr;
Allan Stephens2d627b92011-01-07 13:00:11 -0500302 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100303 int i, j;
304
Per Liden4323add2006-01-18 00:38:21 +0100305 buf = tipc_cfg_reply_alloc(MAX_BEARERS * TLV_SPACE(TIPC_MAX_BEARER_NAME));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100306 if (!buf)
307 return NULL;
308
Per Liden4323add2006-01-18 00:38:21 +0100309 read_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100310 for (i = 0, m_ptr = media_list; i < media_count; i++, m_ptr++) {
311 for (j = 0; j < MAX_BEARERS; j++) {
Per Liden4323add2006-01-18 00:38:21 +0100312 b_ptr = &tipc_bearers[j];
Per Lidenb97bf3f2006-01-02 19:04:38 +0100313 if (b_ptr->active && (b_ptr->media == m_ptr)) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900314 tipc_cfg_append_tlv(buf, TIPC_TLV_BEARER_NAME,
Allan Stephens2d627b92011-01-07 13:00:11 -0500315 b_ptr->name,
316 strlen(b_ptr->name) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100317 }
318 }
319 }
Per Liden4323add2006-01-18 00:38:21 +0100320 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100321 return buf;
322}
323
Allan Stephens2d627b92011-01-07 13:00:11 -0500324void tipc_bearer_add_dest(struct tipc_bearer *b_ptr, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100325{
Per Liden4323add2006-01-18 00:38:21 +0100326 tipc_nmap_add(&b_ptr->nodes, dest);
Per Liden4323add2006-01-18 00:38:21 +0100327 tipc_bcbearer_sort();
Allan Stephens12099662011-04-21 19:05:25 -0500328 tipc_disc_add_dest(b_ptr->link_req);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100329}
330
Allan Stephens2d627b92011-01-07 13:00:11 -0500331void tipc_bearer_remove_dest(struct tipc_bearer *b_ptr, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100332{
Per Liden4323add2006-01-18 00:38:21 +0100333 tipc_nmap_remove(&b_ptr->nodes, dest);
Per Liden4323add2006-01-18 00:38:21 +0100334 tipc_bcbearer_sort();
Allan Stephens12099662011-04-21 19:05:25 -0500335 tipc_disc_remove_dest(b_ptr->link_req);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100336}
337
338/*
339 * bearer_push(): Resolve bearer congestion. Force the waiting
340 * links to push out their unsent packets, one packet per link
341 * per iteration, until all packets are gone or congestion reoccurs.
Per Liden4323add2006-01-18 00:38:21 +0100342 * 'tipc_net_lock' is read_locked when this function is called
Per Lidenb97bf3f2006-01-02 19:04:38 +0100343 * bearer.lock must be taken before calling
344 * Returns binary true(1) ore false(0)
345 */
Allan Stephens2d627b92011-01-07 13:00:11 -0500346static int bearer_push(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100347{
Allan Stephens0e35fd52008-07-14 22:44:01 -0700348 u32 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100349 struct link *ln, *tln;
350
Allan Stephens2d627b92011-01-07 13:00:11 -0500351 if (b_ptr->blocked)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100352 return 0;
353
354 while (!list_empty(&b_ptr->cong_links) && (res != PUSH_FAILED)) {
355 list_for_each_entry_safe(ln, tln, &b_ptr->cong_links, link_list) {
Per Liden4323add2006-01-18 00:38:21 +0100356 res = tipc_link_push_packet(ln);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100357 if (res == PUSH_FAILED)
358 break;
359 if (res == PUSH_FINISHED)
360 list_move_tail(&ln->link_list, &b_ptr->links);
361 }
362 }
363 return list_empty(&b_ptr->cong_links);
364}
365
Allan Stephens2d627b92011-01-07 13:00:11 -0500366void tipc_bearer_lock_push(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100367{
Allan Stephens2d627b92011-01-07 13:00:11 -0500368 spin_lock_bh(&b_ptr->lock);
Allan Stephens23f0ff92011-04-07 11:25:26 -0400369 bearer_push(b_ptr);
Allan Stephens2d627b92011-01-07 13:00:11 -0500370 spin_unlock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100371}
372
373
374/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900375 * Interrupt enabling new requests after bearer congestion or blocking:
376 * See bearer_send().
Per Lidenb97bf3f2006-01-02 19:04:38 +0100377 */
Allan Stephens2d627b92011-01-07 13:00:11 -0500378void tipc_continue(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100379{
Allan Stephens2d627b92011-01-07 13:00:11 -0500380 spin_lock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100381 if (!list_empty(&b_ptr->cong_links))
Per Liden4323add2006-01-18 00:38:21 +0100382 tipc_k_signal((Handler)tipc_bearer_lock_push, (unsigned long)b_ptr);
Allan Stephens2d627b92011-01-07 13:00:11 -0500383 b_ptr->blocked = 0;
384 spin_unlock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100385}
386
387/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900388 * Schedule link for sending of messages after the bearer
389 * has been deblocked by 'continue()'. This method is called
390 * when somebody tries to send a message via this link while
Per Liden4323add2006-01-18 00:38:21 +0100391 * the bearer is congested. 'tipc_net_lock' is in read_lock here
Per Lidenb97bf3f2006-01-02 19:04:38 +0100392 * bearer.lock is busy
393 */
394
Allan Stephens2d627b92011-01-07 13:00:11 -0500395static void tipc_bearer_schedule_unlocked(struct tipc_bearer *b_ptr, struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100396{
397 list_move_tail(&l_ptr->link_list, &b_ptr->cong_links);
398}
399
400/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900401 * Schedule link for sending of messages after the bearer
402 * has been deblocked by 'continue()'. This method is called
403 * when somebody tries to send a message via this link while
Per Liden4323add2006-01-18 00:38:21 +0100404 * the bearer is congested. 'tipc_net_lock' is in read_lock here,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100405 * bearer.lock is free
406 */
407
Allan Stephens2d627b92011-01-07 13:00:11 -0500408void tipc_bearer_schedule(struct tipc_bearer *b_ptr, struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100409{
Allan Stephens2d627b92011-01-07 13:00:11 -0500410 spin_lock_bh(&b_ptr->lock);
Per Liden4323add2006-01-18 00:38:21 +0100411 tipc_bearer_schedule_unlocked(b_ptr, l_ptr);
Allan Stephens2d627b92011-01-07 13:00:11 -0500412 spin_unlock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100413}
414
415
416/*
Per Liden4323add2006-01-18 00:38:21 +0100417 * tipc_bearer_resolve_congestion(): Check if there is bearer congestion,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100418 * and if there is, try to resolve it before returning.
Per Liden4323add2006-01-18 00:38:21 +0100419 * 'tipc_net_lock' is read_locked when this function is called
Per Lidenb97bf3f2006-01-02 19:04:38 +0100420 */
Allan Stephens2d627b92011-01-07 13:00:11 -0500421int tipc_bearer_resolve_congestion(struct tipc_bearer *b_ptr, struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100422{
423 int res = 1;
424
425 if (list_empty(&b_ptr->cong_links))
426 return 1;
Allan Stephens2d627b92011-01-07 13:00:11 -0500427 spin_lock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100428 if (!bearer_push(b_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +0100429 tipc_bearer_schedule_unlocked(b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100430 res = 0;
431 }
Allan Stephens2d627b92011-01-07 13:00:11 -0500432 spin_unlock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100433 return res;
434}
435
Allan Stephensb274f4a2010-05-11 14:30:16 +0000436/**
437 * tipc_bearer_congested - determines if bearer is currently congested
438 */
439
Allan Stephens2d627b92011-01-07 13:00:11 -0500440int tipc_bearer_congested(struct tipc_bearer *b_ptr, struct link *l_ptr)
Allan Stephensb274f4a2010-05-11 14:30:16 +0000441{
Allan Stephens2d627b92011-01-07 13:00:11 -0500442 if (unlikely(b_ptr->blocked))
Allan Stephensb274f4a2010-05-11 14:30:16 +0000443 return 1;
444 if (likely(list_empty(&b_ptr->cong_links)))
445 return 0;
446 return !tipc_bearer_resolve_congestion(b_ptr, l_ptr);
447}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100448
449/**
450 * tipc_enable_bearer - enable bearer with the given name
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900451 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100452
Allan Stephens50d3e632011-02-28 14:56:15 -0500453int tipc_enable_bearer(const char *name, u32 disc_domain, u32 priority)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100454{
Allan Stephens2d627b92011-01-07 13:00:11 -0500455 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100456 struct media *m_ptr;
457 struct bearer_name b_name;
458 char addr_string[16];
459 u32 bearer_id;
460 u32 with_this_prio;
461 u32 i;
462 int res = -EINVAL;
463
Allan Stephensa10bd922006-06-25 23:52:17 -0700464 if (tipc_mode != TIPC_NET_MODE) {
465 warn("Bearer <%s> rejected, not supported in standalone mode\n",
466 name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100467 return -ENOPROTOOPT;
Allan Stephensa10bd922006-06-25 23:52:17 -0700468 }
469 if (!bearer_name_validate(name, &b_name)) {
470 warn("Bearer <%s> rejected, illegal name\n", name);
Per Liden16cb4b32006-01-13 22:22:22 +0100471 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700472 }
Allan Stephens66e019a2011-04-20 16:24:07 -0500473 if (tipc_addr_domain_valid(disc_domain) &&
474 (disc_domain != tipc_own_addr)) {
475 if (tipc_in_scope(disc_domain, tipc_own_addr)) {
476 disc_domain = tipc_own_addr & TIPC_CLUSTER_MASK;
477 res = 0; /* accept any node in own cluster */
478 } else if (in_own_cluster(disc_domain))
479 res = 0; /* accept specified node in own cluster */
480 }
481 if (res) {
Allan Stephens50d3e632011-02-28 14:56:15 -0500482 warn("Bearer <%s> rejected, illegal discovery domain\n", name);
Allan Stephensa10bd922006-06-25 23:52:17 -0700483 return -EINVAL;
484 }
Per Liden16cb4b32006-01-13 22:22:22 +0100485 if ((priority < TIPC_MIN_LINK_PRI ||
486 priority > TIPC_MAX_LINK_PRI) &&
Allan Stephensa10bd922006-06-25 23:52:17 -0700487 (priority != TIPC_MEDIA_LINK_PRI)) {
488 warn("Bearer <%s> rejected, illegal priority\n", name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100489 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700490 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100491
Per Liden4323add2006-01-18 00:38:21 +0100492 write_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100493
494 m_ptr = media_find(b_name.media_name);
495 if (!m_ptr) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700496 warn("Bearer <%s> rejected, media <%s> not registered\n", name,
497 b_name.media_name);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500498 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100499 }
Per Liden16cb4b32006-01-13 22:22:22 +0100500
501 if (priority == TIPC_MEDIA_LINK_PRI)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100502 priority = m_ptr->priority;
503
504restart:
505 bearer_id = MAX_BEARERS;
506 with_this_prio = 1;
507 for (i = MAX_BEARERS; i-- != 0; ) {
Per Liden4323add2006-01-18 00:38:21 +0100508 if (!tipc_bearers[i].active) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100509 bearer_id = i;
510 continue;
511 }
Allan Stephens2d627b92011-01-07 13:00:11 -0500512 if (!strcmp(name, tipc_bearers[i].name)) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700513 warn("Bearer <%s> rejected, already enabled\n", name);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500514 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100515 }
Per Liden4323add2006-01-18 00:38:21 +0100516 if ((tipc_bearers[i].priority == priority) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100517 (++with_this_prio > 2)) {
518 if (priority-- == 0) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700519 warn("Bearer <%s> rejected, duplicate priority\n",
520 name);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500521 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100522 }
Allan Stephensa10bd922006-06-25 23:52:17 -0700523 warn("Bearer <%s> priority adjustment required %u->%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100524 name, priority + 1, priority);
525 goto restart;
526 }
527 }
528 if (bearer_id >= MAX_BEARERS) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900529 warn("Bearer <%s> rejected, bearer limit reached (%u)\n",
Allan Stephensa10bd922006-06-25 23:52:17 -0700530 name, MAX_BEARERS);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500531 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100532 }
533
Per Liden4323add2006-01-18 00:38:21 +0100534 b_ptr = &tipc_bearers[bearer_id];
Allan Stephens2d627b92011-01-07 13:00:11 -0500535 strcpy(b_ptr->name, name);
536 res = m_ptr->enable_bearer(b_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100537 if (res) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700538 warn("Bearer <%s> rejected, enable failure (%d)\n", name, -res);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500539 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100540 }
541
542 b_ptr->identity = bearer_id;
543 b_ptr->media = m_ptr;
544 b_ptr->net_plane = bearer_id + 'A';
545 b_ptr->active = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100546 b_ptr->priority = priority;
547 INIT_LIST_HEAD(&b_ptr->cong_links);
548 INIT_LIST_HEAD(&b_ptr->links);
Allan Stephens2d627b92011-01-07 13:00:11 -0500549 spin_lock_init(&b_ptr->lock);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500550
551 res = tipc_disc_create(b_ptr, &m_ptr->bcast_addr, disc_domain);
552 if (res) {
553 bearer_disable(b_ptr);
554 warn("Bearer <%s> rejected, discovery object creation failed\n",
555 name);
556 goto exit;
557 }
Per Liden16cb4b32006-01-13 22:22:22 +0100558 info("Enabled bearer <%s>, discovery domain %s, priority %u\n",
Allan Stephens50d3e632011-02-28 14:56:15 -0500559 name, tipc_addr_string_fill(addr_string, disc_domain), priority);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500560exit:
Per Liden4323add2006-01-18 00:38:21 +0100561 write_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100562 return res;
563}
564
565/**
566 * tipc_block_bearer(): Block the bearer with the given name,
567 * and reset all its links
568 */
569
570int tipc_block_bearer(const char *name)
571{
Allan Stephens2d627b92011-01-07 13:00:11 -0500572 struct tipc_bearer *b_ptr = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100573 struct link *l_ptr;
574 struct link *temp_l_ptr;
575
Per Liden4323add2006-01-18 00:38:21 +0100576 read_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100577 b_ptr = bearer_find(name);
578 if (!b_ptr) {
579 warn("Attempt to block unknown bearer <%s>\n", name);
Per Liden4323add2006-01-18 00:38:21 +0100580 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100581 return -EINVAL;
582 }
583
Allan Stephensa10bd922006-06-25 23:52:17 -0700584 info("Blocking bearer <%s>\n", name);
Allan Stephens2d627b92011-01-07 13:00:11 -0500585 spin_lock_bh(&b_ptr->lock);
586 b_ptr->blocked = 1;
Allan Stephens4b3743e2011-05-26 13:59:17 -0400587 list_splice_init(&b_ptr->cong_links, &b_ptr->links);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100588 list_for_each_entry_safe(l_ptr, temp_l_ptr, &b_ptr->links, link_list) {
David S. Miller6c000552008-09-02 23:38:32 -0700589 struct tipc_node *n_ptr = l_ptr->owner;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100590
591 spin_lock_bh(&n_ptr->lock);
Per Liden4323add2006-01-18 00:38:21 +0100592 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100593 spin_unlock_bh(&n_ptr->lock);
594 }
Allan Stephens2d627b92011-01-07 13:00:11 -0500595 spin_unlock_bh(&b_ptr->lock);
Per Liden4323add2006-01-18 00:38:21 +0100596 read_unlock_bh(&tipc_net_lock);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700597 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100598}
599
600/**
601 * bearer_disable -
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900602 *
Per Liden4323add2006-01-18 00:38:21 +0100603 * Note: This routine assumes caller holds tipc_net_lock.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100604 */
605
Allan Stephens2d627b92011-01-07 13:00:11 -0500606static void bearer_disable(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100607{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100608 struct link *l_ptr;
609 struct link *temp_l_ptr;
610
Allan Stephens2d627b92011-01-07 13:00:11 -0500611 info("Disabling bearer <%s>\n", b_ptr->name);
Allan Stephens2d627b92011-01-07 13:00:11 -0500612 spin_lock_bh(&b_ptr->lock);
Allan Stephens2d627b92011-01-07 13:00:11 -0500613 b_ptr->blocked = 1;
614 b_ptr->media->disable_bearer(b_ptr);
Allan Stephens4b3743e2011-05-26 13:59:17 -0400615 list_splice_init(&b_ptr->cong_links, &b_ptr->links);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100616 list_for_each_entry_safe(l_ptr, temp_l_ptr, &b_ptr->links, link_list) {
Per Liden4323add2006-01-18 00:38:21 +0100617 tipc_link_delete(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100618 }
Allan Stephens3a777ff2011-04-21 13:58:26 -0500619 if (b_ptr->link_req)
620 tipc_disc_delete(b_ptr->link_req);
Allan Stephens2d627b92011-01-07 13:00:11 -0500621 spin_unlock_bh(&b_ptr->lock);
622 memset(b_ptr, 0, sizeof(struct tipc_bearer));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100623}
624
625int tipc_disable_bearer(const char *name)
626{
Allan Stephens2d627b92011-01-07 13:00:11 -0500627 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100628 int res;
629
Per Liden4323add2006-01-18 00:38:21 +0100630 write_lock_bh(&tipc_net_lock);
Allan Stephensccc901e2010-10-14 13:58:26 +0000631 b_ptr = bearer_find(name);
632 if (b_ptr == NULL) {
633 warn("Attempt to disable unknown bearer <%s>\n", name);
634 res = -EINVAL;
Allan Stephens28cc9372010-11-30 12:00:56 +0000635 } else {
636 bearer_disable(b_ptr);
637 res = 0;
638 }
Per Liden4323add2006-01-18 00:38:21 +0100639 write_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100640 return res;
641}
642
643
644
Per Liden4323add2006-01-18 00:38:21 +0100645void tipc_bearer_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100646{
647 u32 i;
648
Per Lidenb97bf3f2006-01-02 19:04:38 +0100649 for (i = 0; i < MAX_BEARERS; i++) {
Per Liden4323add2006-01-18 00:38:21 +0100650 if (tipc_bearers[i].active)
Allan Stephensccc901e2010-10-14 13:58:26 +0000651 bearer_disable(&tipc_bearers[i]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100652 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100653 media_count = 0;
654}