blob: 9012a3695b8aef7504b04b1449d908a6e806e37c [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
Neil Hormand0021b22010-03-03 08:31:23 +0000109 if (tipc_mode != TIPC_NET_MODE) {
Allan Stephens706767d2011-10-06 15:28:44 -0400110 warn("Media <%s> rejected, not in networked mode yet\n",
111 m_ptr->name);
Neil Hormand0021b22010-03-03 08:31:23 +0000112 goto exit;
113 }
Allan Stephens706767d2011-10-06 15:28:44 -0400114 if (!media_name_valid(m_ptr->name)) {
115 warn("Media <%s> rejected, illegal name\n", m_ptr->name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100116 goto exit;
117 }
Allan Stephens706767d2011-10-06 15:28:44 -0400118 if (m_ptr->bcast_addr.type != htonl(m_ptr->type_id)) {
119 warn("Media <%s> rejected, illegal broadcast address\n",
120 m_ptr->name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100121 goto exit;
122 }
Allan Stephens706767d2011-10-06 15:28:44 -0400123 if ((m_ptr->priority < TIPC_MIN_LINK_PRI) ||
124 (m_ptr->priority > TIPC_MAX_LINK_PRI)) {
125 warn("Media <%s> rejected, illegal priority (%u)\n",
126 m_ptr->name, m_ptr->priority);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100127 goto exit;
128 }
Allan Stephens706767d2011-10-06 15:28:44 -0400129 if ((m_ptr->tolerance < TIPC_MIN_LINK_TOL) ||
130 (m_ptr->tolerance > TIPC_MAX_LINK_TOL)) {
131 warn("Media <%s> rejected, illegal tolerance (%u)\n",
132 m_ptr->name, m_ptr->tolerance);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100133 goto exit;
134 }
135
Allan Stephensc79be452011-10-06 16:40:55 -0400136 if (media_count >= MAX_MEDIA) {
Allan Stephens706767d2011-10-06 15:28:44 -0400137 warn("Media <%s> rejected, media limit reached (%u)\n",
138 m_ptr->name, MAX_MEDIA);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100139 goto exit;
140 }
Allan Stephensc79be452011-10-06 16:40:55 -0400141 if (media_find(m_ptr->name) || media_find_id(m_ptr->type_id)) {
142 warn("Media <%s> rejected, already registered\n", m_ptr->name);
143 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100144 }
145
Allan Stephensa31abe82011-10-07 09:25:12 -0400146 media_list[media_count] = m_ptr;
Allan Stephensc79be452011-10-06 16:40:55 -0400147 media_count++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100148 res = 0;
149exit:
Per Liden4323add2006-01-18 00:38:21 +0100150 write_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100151 return res;
152}
153
154/**
Per Liden4323add2006-01-18 00:38:21 +0100155 * tipc_media_addr_printf - record media address in print buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100156 */
157
Per Liden4323add2006-01-18 00:38:21 +0100158void tipc_media_addr_printf(struct print_buf *pb, struct tipc_media_addr *a)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100159{
160 struct media *m_ptr;
161 u32 media_type;
162 u32 i;
163
164 media_type = ntohl(a->type);
Allan Stephensa31abe82011-10-07 09:25:12 -0400165 m_ptr = media_find_id(media_type);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100166
Allan Stephensa31abe82011-10-07 09:25:12 -0400167 if (m_ptr && (m_ptr->addr2str != NULL)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100168 char addr_str[MAX_ADDR_STR];
169
Allan Stephense91ed0b2006-10-16 21:44:59 -0700170 tipc_printf(pb, "%s(%s)", m_ptr->name,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100171 m_ptr->addr2str(a, addr_str, sizeof(addr_str)));
172 } else {
173 unchar *addr = (unchar *)&a->dev_addr;
174
Allan Stephense91ed0b2006-10-16 21:44:59 -0700175 tipc_printf(pb, "UNKNOWN(%u)", media_type);
Allan Stephensa0168922010-12-31 18:59:35 +0000176 for (i = 0; i < (sizeof(*a) - sizeof(a->type)); i++)
Allan Stephense91ed0b2006-10-16 21:44:59 -0700177 tipc_printf(pb, "-%02x", addr[i]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100178 }
179}
180
181/**
Per Liden4323add2006-01-18 00:38:21 +0100182 * tipc_media_get_names - record names of registered media in buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100183 */
184
Per Liden4323add2006-01-18 00:38:21 +0100185struct sk_buff *tipc_media_get_names(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100186{
187 struct sk_buff *buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100188 int i;
189
Per Liden4323add2006-01-18 00:38:21 +0100190 buf = tipc_cfg_reply_alloc(MAX_MEDIA * TLV_SPACE(TIPC_MAX_MEDIA_NAME));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100191 if (!buf)
192 return NULL;
193
Per Liden4323add2006-01-18 00:38:21 +0100194 read_lock_bh(&tipc_net_lock);
Allan Stephensa31abe82011-10-07 09:25:12 -0400195 for (i = 0; i < media_count; i++) {
196 tipc_cfg_append_tlv(buf, TIPC_TLV_MEDIA_NAME,
197 media_list[i]->name,
198 strlen(media_list[i]->name) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100199 }
Per Liden4323add2006-01-18 00:38:21 +0100200 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100201 return buf;
202}
203
204/**
205 * bearer_name_validate - validate & (optionally) deconstruct bearer name
206 * @name - ptr to bearer name string
207 * @name_parts - ptr to area for bearer name components (or NULL if not needed)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900208 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100209 * Returns 1 if bearer name is valid, otherwise 0.
210 */
211
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900212static int bearer_name_validate(const char *name,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100213 struct bearer_name *name_parts)
214{
215 char name_copy[TIPC_MAX_BEARER_NAME];
216 char *media_name;
217 char *if_name;
218 u32 media_len;
219 u32 if_len;
220
221 /* copy bearer name & ensure length is OK */
222
223 name_copy[TIPC_MAX_BEARER_NAME - 1] = 0;
224 /* need above in case non-Posix strncpy() doesn't pad with nulls */
225 strncpy(name_copy, name, TIPC_MAX_BEARER_NAME);
226 if (name_copy[TIPC_MAX_BEARER_NAME - 1] != 0)
227 return 0;
228
229 /* ensure all component parts of bearer name are present */
230
231 media_name = name_copy;
Allan Stephens2db99832010-12-31 18:59:33 +0000232 if_name = strchr(media_name, ':');
233 if (if_name == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100234 return 0;
235 *(if_name++) = 0;
236 media_len = if_name - media_name;
237 if_len = strlen(if_name) + 1;
238
239 /* validate component parts of bearer name */
240
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900241 if ((media_len <= 1) || (media_len > TIPC_MAX_MEDIA_NAME) ||
242 (if_len <= 1) || (if_len > TIPC_MAX_IF_NAME) ||
Per Lidenb97bf3f2006-01-02 19:04:38 +0100243 (strspn(media_name, tipc_alphabet) != (media_len - 1)) ||
244 (strspn(if_name, tipc_alphabet) != (if_len - 1)))
245 return 0;
246
247 /* return bearer name components, if necessary */
248
249 if (name_parts) {
250 strcpy(name_parts->media_name, media_name);
251 strcpy(name_parts->if_name, if_name);
252 }
253 return 1;
254}
255
256/**
257 * bearer_find - locates bearer object with matching bearer name
258 */
259
Allan Stephens2d627b92011-01-07 13:00:11 -0500260static struct tipc_bearer *bearer_find(const char *name)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100261{
Allan Stephens2d627b92011-01-07 13:00:11 -0500262 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100263 u32 i;
264
Per Liden4323add2006-01-18 00:38:21 +0100265 for (i = 0, b_ptr = tipc_bearers; i < MAX_BEARERS; i++, b_ptr++) {
Allan Stephens2d627b92011-01-07 13:00:11 -0500266 if (b_ptr->active && (!strcmp(b_ptr->name, name)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100267 return b_ptr;
268 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800269 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100270}
271
272/**
Per Liden4323add2006-01-18 00:38:21 +0100273 * tipc_bearer_find_interface - locates bearer object with matching interface name
Per Lidenb97bf3f2006-01-02 19:04:38 +0100274 */
275
Allan Stephens2d627b92011-01-07 13:00:11 -0500276struct tipc_bearer *tipc_bearer_find_interface(const char *if_name)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100277{
Allan Stephens2d627b92011-01-07 13:00:11 -0500278 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100279 char *b_if_name;
280 u32 i;
281
Per Liden4323add2006-01-18 00:38:21 +0100282 for (i = 0, b_ptr = tipc_bearers; i < MAX_BEARERS; i++, b_ptr++) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100283 if (!b_ptr->active)
284 continue;
Allan Stephens2d627b92011-01-07 13:00:11 -0500285 b_if_name = strchr(b_ptr->name, ':') + 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100286 if (!strcmp(b_if_name, if_name))
287 return b_ptr;
288 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800289 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100290}
291
292/**
Per Liden4323add2006-01-18 00:38:21 +0100293 * tipc_bearer_get_names - record names of bearers in buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100294 */
295
Per Liden4323add2006-01-18 00:38:21 +0100296struct sk_buff *tipc_bearer_get_names(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100297{
298 struct sk_buff *buf;
Allan Stephens2d627b92011-01-07 13:00:11 -0500299 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100300 int i, j;
301
Per Liden4323add2006-01-18 00:38:21 +0100302 buf = tipc_cfg_reply_alloc(MAX_BEARERS * TLV_SPACE(TIPC_MAX_BEARER_NAME));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100303 if (!buf)
304 return NULL;
305
Per Liden4323add2006-01-18 00:38:21 +0100306 read_lock_bh(&tipc_net_lock);
Allan Stephensa31abe82011-10-07 09:25:12 -0400307 for (i = 0; i < media_count; i++) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100308 for (j = 0; j < MAX_BEARERS; j++) {
Per Liden4323add2006-01-18 00:38:21 +0100309 b_ptr = &tipc_bearers[j];
Allan Stephensa31abe82011-10-07 09:25:12 -0400310 if (b_ptr->active && (b_ptr->media == media_list[i])) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900311 tipc_cfg_append_tlv(buf, TIPC_TLV_BEARER_NAME,
Allan Stephens2d627b92011-01-07 13:00:11 -0500312 b_ptr->name,
313 strlen(b_ptr->name) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100314 }
315 }
316 }
Per Liden4323add2006-01-18 00:38:21 +0100317 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100318 return buf;
319}
320
Allan Stephens2d627b92011-01-07 13:00:11 -0500321void tipc_bearer_add_dest(struct tipc_bearer *b_ptr, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100322{
Per Liden4323add2006-01-18 00:38:21 +0100323 tipc_nmap_add(&b_ptr->nodes, dest);
Per Liden4323add2006-01-18 00:38:21 +0100324 tipc_bcbearer_sort();
Allan Stephens12099662011-04-21 19:05:25 -0500325 tipc_disc_add_dest(b_ptr->link_req);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100326}
327
Allan Stephens2d627b92011-01-07 13:00:11 -0500328void tipc_bearer_remove_dest(struct tipc_bearer *b_ptr, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100329{
Per Liden4323add2006-01-18 00:38:21 +0100330 tipc_nmap_remove(&b_ptr->nodes, dest);
Per Liden4323add2006-01-18 00:38:21 +0100331 tipc_bcbearer_sort();
Allan Stephens12099662011-04-21 19:05:25 -0500332 tipc_disc_remove_dest(b_ptr->link_req);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100333}
334
335/*
336 * bearer_push(): Resolve bearer congestion. Force the waiting
337 * links to push out their unsent packets, one packet per link
338 * per iteration, until all packets are gone or congestion reoccurs.
Per Liden4323add2006-01-18 00:38:21 +0100339 * 'tipc_net_lock' is read_locked when this function is called
Per Lidenb97bf3f2006-01-02 19:04:38 +0100340 * bearer.lock must be taken before calling
341 * Returns binary true(1) ore false(0)
342 */
Allan Stephens2d627b92011-01-07 13:00:11 -0500343static int bearer_push(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100344{
Allan Stephens0e35fd52008-07-14 22:44:01 -0700345 u32 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100346 struct link *ln, *tln;
347
Allan Stephens2d627b92011-01-07 13:00:11 -0500348 if (b_ptr->blocked)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100349 return 0;
350
351 while (!list_empty(&b_ptr->cong_links) && (res != PUSH_FAILED)) {
352 list_for_each_entry_safe(ln, tln, &b_ptr->cong_links, link_list) {
Per Liden4323add2006-01-18 00:38:21 +0100353 res = tipc_link_push_packet(ln);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100354 if (res == PUSH_FAILED)
355 break;
356 if (res == PUSH_FINISHED)
357 list_move_tail(&ln->link_list, &b_ptr->links);
358 }
359 }
360 return list_empty(&b_ptr->cong_links);
361}
362
Allan Stephens2d627b92011-01-07 13:00:11 -0500363void tipc_bearer_lock_push(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100364{
Allan Stephens2d627b92011-01-07 13:00:11 -0500365 spin_lock_bh(&b_ptr->lock);
Allan Stephens23f0ff92011-04-07 11:25:26 -0400366 bearer_push(b_ptr);
Allan Stephens2d627b92011-01-07 13:00:11 -0500367 spin_unlock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100368}
369
370
371/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900372 * Interrupt enabling new requests after bearer congestion or blocking:
373 * See bearer_send().
Per Lidenb97bf3f2006-01-02 19:04:38 +0100374 */
Allan Stephens2d627b92011-01-07 13:00:11 -0500375void tipc_continue(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100376{
Allan Stephens2d627b92011-01-07 13:00:11 -0500377 spin_lock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100378 if (!list_empty(&b_ptr->cong_links))
Per Liden4323add2006-01-18 00:38:21 +0100379 tipc_k_signal((Handler)tipc_bearer_lock_push, (unsigned long)b_ptr);
Allan Stephens2d627b92011-01-07 13:00:11 -0500380 b_ptr->blocked = 0;
381 spin_unlock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100382}
383
384/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900385 * Schedule link for sending of messages after the bearer
386 * has been deblocked by 'continue()'. This method is called
387 * when somebody tries to send a message via this link while
Per Liden4323add2006-01-18 00:38:21 +0100388 * the bearer is congested. 'tipc_net_lock' is in read_lock here
Per Lidenb97bf3f2006-01-02 19:04:38 +0100389 * bearer.lock is busy
390 */
391
Allan Stephens2d627b92011-01-07 13:00:11 -0500392static void tipc_bearer_schedule_unlocked(struct tipc_bearer *b_ptr, struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100393{
394 list_move_tail(&l_ptr->link_list, &b_ptr->cong_links);
395}
396
397/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900398 * Schedule link for sending of messages after the bearer
399 * has been deblocked by 'continue()'. This method is called
400 * when somebody tries to send a message via this link while
Per Liden4323add2006-01-18 00:38:21 +0100401 * the bearer is congested. 'tipc_net_lock' is in read_lock here,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100402 * bearer.lock is free
403 */
404
Allan Stephens2d627b92011-01-07 13:00:11 -0500405void tipc_bearer_schedule(struct tipc_bearer *b_ptr, struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100406{
Allan Stephens2d627b92011-01-07 13:00:11 -0500407 spin_lock_bh(&b_ptr->lock);
Per Liden4323add2006-01-18 00:38:21 +0100408 tipc_bearer_schedule_unlocked(b_ptr, l_ptr);
Allan Stephens2d627b92011-01-07 13:00:11 -0500409 spin_unlock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100410}
411
412
413/*
Per Liden4323add2006-01-18 00:38:21 +0100414 * tipc_bearer_resolve_congestion(): Check if there is bearer congestion,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100415 * and if there is, try to resolve it before returning.
Per Liden4323add2006-01-18 00:38:21 +0100416 * 'tipc_net_lock' is read_locked when this function is called
Per Lidenb97bf3f2006-01-02 19:04:38 +0100417 */
Allan Stephens2d627b92011-01-07 13:00:11 -0500418int tipc_bearer_resolve_congestion(struct tipc_bearer *b_ptr, struct link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100419{
420 int res = 1;
421
422 if (list_empty(&b_ptr->cong_links))
423 return 1;
Allan Stephens2d627b92011-01-07 13:00:11 -0500424 spin_lock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100425 if (!bearer_push(b_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +0100426 tipc_bearer_schedule_unlocked(b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100427 res = 0;
428 }
Allan Stephens2d627b92011-01-07 13:00:11 -0500429 spin_unlock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100430 return res;
431}
432
Allan Stephensb274f4a2010-05-11 14:30:16 +0000433/**
434 * tipc_bearer_congested - determines if bearer is currently congested
435 */
436
Allan Stephens2d627b92011-01-07 13:00:11 -0500437int tipc_bearer_congested(struct tipc_bearer *b_ptr, struct link *l_ptr)
Allan Stephensb274f4a2010-05-11 14:30:16 +0000438{
Allan Stephens2d627b92011-01-07 13:00:11 -0500439 if (unlikely(b_ptr->blocked))
Allan Stephensb274f4a2010-05-11 14:30:16 +0000440 return 1;
441 if (likely(list_empty(&b_ptr->cong_links)))
442 return 0;
443 return !tipc_bearer_resolve_congestion(b_ptr, l_ptr);
444}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100445
446/**
447 * tipc_enable_bearer - enable bearer with the given name
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900448 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100449
Allan Stephens50d3e632011-02-28 14:56:15 -0500450int tipc_enable_bearer(const char *name, u32 disc_domain, u32 priority)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100451{
Allan Stephens2d627b92011-01-07 13:00:11 -0500452 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100453 struct media *m_ptr;
454 struct bearer_name b_name;
455 char addr_string[16];
456 u32 bearer_id;
457 u32 with_this_prio;
458 u32 i;
459 int res = -EINVAL;
460
Allan Stephensa10bd922006-06-25 23:52:17 -0700461 if (tipc_mode != TIPC_NET_MODE) {
462 warn("Bearer <%s> rejected, not supported in standalone mode\n",
463 name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100464 return -ENOPROTOOPT;
Allan Stephensa10bd922006-06-25 23:52:17 -0700465 }
466 if (!bearer_name_validate(name, &b_name)) {
467 warn("Bearer <%s> rejected, illegal name\n", name);
Per Liden16cb4b32006-01-13 22:22:22 +0100468 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700469 }
Allan Stephens66e019a2011-04-20 16:24:07 -0500470 if (tipc_addr_domain_valid(disc_domain) &&
471 (disc_domain != tipc_own_addr)) {
472 if (tipc_in_scope(disc_domain, tipc_own_addr)) {
473 disc_domain = tipc_own_addr & TIPC_CLUSTER_MASK;
474 res = 0; /* accept any node in own cluster */
475 } else if (in_own_cluster(disc_domain))
476 res = 0; /* accept specified node in own cluster */
477 }
478 if (res) {
Allan Stephens50d3e632011-02-28 14:56:15 -0500479 warn("Bearer <%s> rejected, illegal discovery domain\n", name);
Allan Stephensa10bd922006-06-25 23:52:17 -0700480 return -EINVAL;
481 }
Per Liden16cb4b32006-01-13 22:22:22 +0100482 if ((priority < TIPC_MIN_LINK_PRI ||
483 priority > TIPC_MAX_LINK_PRI) &&
Allan Stephensa10bd922006-06-25 23:52:17 -0700484 (priority != TIPC_MEDIA_LINK_PRI)) {
485 warn("Bearer <%s> rejected, illegal priority\n", name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100486 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700487 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100488
Per Liden4323add2006-01-18 00:38:21 +0100489 write_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100490
491 m_ptr = media_find(b_name.media_name);
492 if (!m_ptr) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700493 warn("Bearer <%s> rejected, media <%s> not registered\n", name,
494 b_name.media_name);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500495 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100496 }
Per Liden16cb4b32006-01-13 22:22:22 +0100497
498 if (priority == TIPC_MEDIA_LINK_PRI)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100499 priority = m_ptr->priority;
500
501restart:
502 bearer_id = MAX_BEARERS;
503 with_this_prio = 1;
504 for (i = MAX_BEARERS; i-- != 0; ) {
Per Liden4323add2006-01-18 00:38:21 +0100505 if (!tipc_bearers[i].active) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100506 bearer_id = i;
507 continue;
508 }
Allan Stephens2d627b92011-01-07 13:00:11 -0500509 if (!strcmp(name, tipc_bearers[i].name)) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700510 warn("Bearer <%s> rejected, already enabled\n", name);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500511 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100512 }
Per Liden4323add2006-01-18 00:38:21 +0100513 if ((tipc_bearers[i].priority == priority) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100514 (++with_this_prio > 2)) {
515 if (priority-- == 0) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700516 warn("Bearer <%s> rejected, duplicate priority\n",
517 name);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500518 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100519 }
Allan Stephensa10bd922006-06-25 23:52:17 -0700520 warn("Bearer <%s> priority adjustment required %u->%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100521 name, priority + 1, priority);
522 goto restart;
523 }
524 }
525 if (bearer_id >= MAX_BEARERS) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900526 warn("Bearer <%s> rejected, bearer limit reached (%u)\n",
Allan Stephensa10bd922006-06-25 23:52:17 -0700527 name, MAX_BEARERS);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500528 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100529 }
530
Per Liden4323add2006-01-18 00:38:21 +0100531 b_ptr = &tipc_bearers[bearer_id];
Allan Stephens2d627b92011-01-07 13:00:11 -0500532 strcpy(b_ptr->name, name);
533 res = m_ptr->enable_bearer(b_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100534 if (res) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700535 warn("Bearer <%s> rejected, enable failure (%d)\n", name, -res);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500536 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100537 }
538
539 b_ptr->identity = bearer_id;
540 b_ptr->media = m_ptr;
541 b_ptr->net_plane = bearer_id + 'A';
542 b_ptr->active = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100543 b_ptr->priority = priority;
544 INIT_LIST_HEAD(&b_ptr->cong_links);
545 INIT_LIST_HEAD(&b_ptr->links);
Allan Stephens2d627b92011-01-07 13:00:11 -0500546 spin_lock_init(&b_ptr->lock);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500547
548 res = tipc_disc_create(b_ptr, &m_ptr->bcast_addr, disc_domain);
549 if (res) {
550 bearer_disable(b_ptr);
551 warn("Bearer <%s> rejected, discovery object creation failed\n",
552 name);
553 goto exit;
554 }
Per Liden16cb4b32006-01-13 22:22:22 +0100555 info("Enabled bearer <%s>, discovery domain %s, priority %u\n",
Allan Stephens50d3e632011-02-28 14:56:15 -0500556 name, tipc_addr_string_fill(addr_string, disc_domain), priority);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500557exit:
Per Liden4323add2006-01-18 00:38:21 +0100558 write_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100559 return res;
560}
561
562/**
563 * tipc_block_bearer(): Block the bearer with the given name,
564 * and reset all its links
565 */
566
567int tipc_block_bearer(const char *name)
568{
Allan Stephens2d627b92011-01-07 13:00:11 -0500569 struct tipc_bearer *b_ptr = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100570 struct link *l_ptr;
571 struct link *temp_l_ptr;
572
Per Liden4323add2006-01-18 00:38:21 +0100573 read_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100574 b_ptr = bearer_find(name);
575 if (!b_ptr) {
576 warn("Attempt to block unknown bearer <%s>\n", name);
Per Liden4323add2006-01-18 00:38:21 +0100577 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100578 return -EINVAL;
579 }
580
Allan Stephensa10bd922006-06-25 23:52:17 -0700581 info("Blocking bearer <%s>\n", name);
Allan Stephens2d627b92011-01-07 13:00:11 -0500582 spin_lock_bh(&b_ptr->lock);
583 b_ptr->blocked = 1;
Allan Stephens4b3743e2011-05-26 13:59:17 -0400584 list_splice_init(&b_ptr->cong_links, &b_ptr->links);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100585 list_for_each_entry_safe(l_ptr, temp_l_ptr, &b_ptr->links, link_list) {
David S. Miller6c000552008-09-02 23:38:32 -0700586 struct tipc_node *n_ptr = l_ptr->owner;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100587
588 spin_lock_bh(&n_ptr->lock);
Per Liden4323add2006-01-18 00:38:21 +0100589 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100590 spin_unlock_bh(&n_ptr->lock);
591 }
Allan Stephens2d627b92011-01-07 13:00:11 -0500592 spin_unlock_bh(&b_ptr->lock);
Per Liden4323add2006-01-18 00:38:21 +0100593 read_unlock_bh(&tipc_net_lock);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700594 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100595}
596
597/**
598 * bearer_disable -
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900599 *
Per Liden4323add2006-01-18 00:38:21 +0100600 * Note: This routine assumes caller holds tipc_net_lock.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100601 */
602
Allan Stephens2d627b92011-01-07 13:00:11 -0500603static void bearer_disable(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100604{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100605 struct link *l_ptr;
606 struct link *temp_l_ptr;
607
Allan Stephens2d627b92011-01-07 13:00:11 -0500608 info("Disabling bearer <%s>\n", b_ptr->name);
Allan Stephens2d627b92011-01-07 13:00:11 -0500609 spin_lock_bh(&b_ptr->lock);
Allan Stephens2d627b92011-01-07 13:00:11 -0500610 b_ptr->blocked = 1;
611 b_ptr->media->disable_bearer(b_ptr);
Allan Stephens4b3743e2011-05-26 13:59:17 -0400612 list_splice_init(&b_ptr->cong_links, &b_ptr->links);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100613 list_for_each_entry_safe(l_ptr, temp_l_ptr, &b_ptr->links, link_list) {
Per Liden4323add2006-01-18 00:38:21 +0100614 tipc_link_delete(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100615 }
Allan Stephens3a777ff2011-04-21 13:58:26 -0500616 if (b_ptr->link_req)
617 tipc_disc_delete(b_ptr->link_req);
Allan Stephens2d627b92011-01-07 13:00:11 -0500618 spin_unlock_bh(&b_ptr->lock);
619 memset(b_ptr, 0, sizeof(struct tipc_bearer));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100620}
621
622int tipc_disable_bearer(const char *name)
623{
Allan Stephens2d627b92011-01-07 13:00:11 -0500624 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100625 int res;
626
Per Liden4323add2006-01-18 00:38:21 +0100627 write_lock_bh(&tipc_net_lock);
Allan Stephensccc901e2010-10-14 13:58:26 +0000628 b_ptr = bearer_find(name);
629 if (b_ptr == NULL) {
630 warn("Attempt to disable unknown bearer <%s>\n", name);
631 res = -EINVAL;
Allan Stephens28cc9372010-11-30 12:00:56 +0000632 } else {
633 bearer_disable(b_ptr);
634 res = 0;
635 }
Per Liden4323add2006-01-18 00:38:21 +0100636 write_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100637 return res;
638}
639
640
641
Per Liden4323add2006-01-18 00:38:21 +0100642void tipc_bearer_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100643{
644 u32 i;
645
Per Lidenb97bf3f2006-01-02 19:04:38 +0100646 for (i = 0; i < MAX_BEARERS; i++) {
Per Liden4323add2006-01-18 00:38:21 +0100647 if (tipc_bearers[i].active)
Allan Stephensccc901e2010-10-14 13:58:26 +0000648 bearer_disable(&tipc_bearers[i]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100649 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100650 media_count = 0;
651}