blob: 86b703f55092a3387aa64359eb8291facbb59b3c [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
Paul Gortmaker358a0d12011-12-29 20:19:42 -050044static struct tipc_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 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010056static int media_name_valid(const char *name)
57{
58 u32 len;
59
60 len = strlen(name);
61 if ((len + 1) > TIPC_MAX_MEDIA_NAME)
62 return 0;
Eric Dumazeta02cec22010-09-22 20:43:57 +000063 return strspn(name, tipc_alphabet) == len;
Per Lidenb97bf3f2006-01-02 19:04:38 +010064}
65
66/**
Allan Stephens5c216e12011-10-18 11:34:29 -040067 * tipc_media_find - locates specified media object by name
Per Lidenb97bf3f2006-01-02 19:04:38 +010068 */
Paul Gortmaker358a0d12011-12-29 20:19:42 -050069struct tipc_media *tipc_media_find(const char *name)
Per Lidenb97bf3f2006-01-02 19:04:38 +010070{
Per Lidenb97bf3f2006-01-02 19:04:38 +010071 u32 i;
72
Allan Stephensa31abe82011-10-07 09:25:12 -040073 for (i = 0; i < media_count; i++) {
74 if (!strcmp(media_list[i]->name, name))
75 return media_list[i];
Per Lidenb97bf3f2006-01-02 19:04:38 +010076 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -080077 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +010078}
79
80/**
Allan Stephensc79be452011-10-06 16:40:55 -040081 * media_find_id - locates specified media object by type identifier
82 */
Paul Gortmaker358a0d12011-12-29 20:19:42 -050083static struct tipc_media *media_find_id(u8 type)
Allan Stephensc79be452011-10-06 16:40:55 -040084{
85 u32 i;
86
87 for (i = 0; i < media_count; i++) {
Allan Stephensa31abe82011-10-07 09:25:12 -040088 if (media_list[i]->type_id == type)
89 return media_list[i];
Allan Stephensc79be452011-10-06 16:40:55 -040090 }
91 return NULL;
92}
93
94/**
Per Lidenb97bf3f2006-01-02 19:04:38 +010095 * tipc_register_media - register a media type
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090096 *
Per Lidenb97bf3f2006-01-02 19:04:38 +010097 * Bearers for this media type must be activated separately at a later stage.
98 */
Paul Gortmaker358a0d12011-12-29 20:19:42 -050099int tipc_register_media(struct tipc_media *m_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100100{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100101 int res = -EINVAL;
102
Per Liden4323add2006-01-18 00:38:21 +0100103 write_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100104
Allan Stephens6c349212011-10-07 09:54:44 -0400105 if (!media_name_valid(m_ptr->name))
Neil Hormand0021b22010-03-03 08:31:23 +0000106 goto exit;
Allan Stephens3d749a62011-10-07 15:19:11 -0400107 if ((m_ptr->bcast_addr.media_id != m_ptr->type_id) ||
108 !m_ptr->bcast_addr.broadcast)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100109 goto exit;
Allan Stephens6c349212011-10-07 09:54:44 -0400110 if (m_ptr->priority > TIPC_MAX_LINK_PRI)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100111 goto exit;
Allan Stephens706767d2011-10-06 15:28:44 -0400112 if ((m_ptr->tolerance < TIPC_MIN_LINK_TOL) ||
Allan Stephens6c349212011-10-07 09:54:44 -0400113 (m_ptr->tolerance > TIPC_MAX_LINK_TOL))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100114 goto exit;
Allan Stephens6c349212011-10-07 09:54:44 -0400115 if (media_count >= MAX_MEDIA)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100116 goto exit;
Allan Stephens5c216e12011-10-18 11:34:29 -0400117 if (tipc_media_find(m_ptr->name) || media_find_id(m_ptr->type_id))
Allan Stephensc79be452011-10-06 16:40:55 -0400118 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100119
Allan Stephensa31abe82011-10-07 09:25:12 -0400120 media_list[media_count] = m_ptr;
Allan Stephensc79be452011-10-06 16:40:55 -0400121 media_count++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100122 res = 0;
123exit:
Per Liden4323add2006-01-18 00:38:21 +0100124 write_unlock_bh(&tipc_net_lock);
Allan Stephens6c349212011-10-07 09:54:44 -0400125 if (res)
126 warn("Media <%s> registration error\n", m_ptr->name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100127 return res;
128}
129
130/**
Per Liden4323add2006-01-18 00:38:21 +0100131 * tipc_media_addr_printf - record media address in print buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100132 */
Per Liden4323add2006-01-18 00:38:21 +0100133void tipc_media_addr_printf(struct print_buf *pb, struct tipc_media_addr *a)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100134{
Allan Stephensc61b6662011-10-07 11:31:49 -0400135 char addr_str[MAX_ADDR_STR];
Paul Gortmaker358a0d12011-12-29 20:19:42 -0500136 struct tipc_media *m_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100137
Allan Stephens3d749a62011-10-07 15:19:11 -0400138 m_ptr = media_find_id(a->media_id);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100139
Allan Stephensc61b6662011-10-07 11:31:49 -0400140 if (m_ptr && !m_ptr->addr2str(a, addr_str, sizeof(addr_str)))
141 tipc_printf(pb, "%s(%s)", m_ptr->name, addr_str);
142 else {
Allan Stephensc61b6662011-10-07 11:31:49 -0400143 u32 i;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100144
Allan Stephens3d749a62011-10-07 15:19:11 -0400145 tipc_printf(pb, "UNKNOWN(%u)", a->media_id);
146 for (i = 0; i < sizeof(a->value); i++)
147 tipc_printf(pb, "-%02x", a->value[i]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100148 }
149}
150
151/**
Per Liden4323add2006-01-18 00:38:21 +0100152 * tipc_media_get_names - record names of registered media in buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100153 */
Per Liden4323add2006-01-18 00:38:21 +0100154struct sk_buff *tipc_media_get_names(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100155{
156 struct sk_buff *buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100157 int i;
158
Per Liden4323add2006-01-18 00:38:21 +0100159 buf = tipc_cfg_reply_alloc(MAX_MEDIA * TLV_SPACE(TIPC_MAX_MEDIA_NAME));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100160 if (!buf)
161 return NULL;
162
Per Liden4323add2006-01-18 00:38:21 +0100163 read_lock_bh(&tipc_net_lock);
Allan Stephensa31abe82011-10-07 09:25:12 -0400164 for (i = 0; i < media_count; i++) {
165 tipc_cfg_append_tlv(buf, TIPC_TLV_MEDIA_NAME,
166 media_list[i]->name,
167 strlen(media_list[i]->name) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100168 }
Per Liden4323add2006-01-18 00:38:21 +0100169 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100170 return buf;
171}
172
173/**
174 * bearer_name_validate - validate & (optionally) deconstruct bearer name
Ben Hutchings2c530402012-07-10 10:55:09 +0000175 * @name: ptr to bearer name string
176 * @name_parts: ptr to area for bearer name components (or NULL if not needed)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900177 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100178 * Returns 1 if bearer name is valid, otherwise 0.
179 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900180static int bearer_name_validate(const char *name,
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500181 struct tipc_bearer_names *name_parts)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100182{
183 char name_copy[TIPC_MAX_BEARER_NAME];
184 char *media_name;
185 char *if_name;
186 u32 media_len;
187 u32 if_len;
188
189 /* copy bearer name & ensure length is OK */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100190 name_copy[TIPC_MAX_BEARER_NAME - 1] = 0;
191 /* need above in case non-Posix strncpy() doesn't pad with nulls */
192 strncpy(name_copy, name, TIPC_MAX_BEARER_NAME);
193 if (name_copy[TIPC_MAX_BEARER_NAME - 1] != 0)
194 return 0;
195
196 /* ensure all component parts of bearer name are present */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100197 media_name = name_copy;
Allan Stephens2db99832010-12-31 18:59:33 +0000198 if_name = strchr(media_name, ':');
199 if (if_name == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100200 return 0;
201 *(if_name++) = 0;
202 media_len = if_name - media_name;
203 if_len = strlen(if_name) + 1;
204
205 /* validate component parts of bearer name */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900206 if ((media_len <= 1) || (media_len > TIPC_MAX_MEDIA_NAME) ||
207 (if_len <= 1) || (if_len > TIPC_MAX_IF_NAME) ||
Per Lidenb97bf3f2006-01-02 19:04:38 +0100208 (strspn(media_name, tipc_alphabet) != (media_len - 1)) ||
209 (strspn(if_name, tipc_alphabet) != (if_len - 1)))
210 return 0;
211
212 /* return bearer name components, if necessary */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100213 if (name_parts) {
214 strcpy(name_parts->media_name, media_name);
215 strcpy(name_parts->if_name, if_name);
216 }
217 return 1;
218}
219
220/**
Allan Stephens5c216e12011-10-18 11:34:29 -0400221 * tipc_bearer_find - locates bearer object with matching bearer name
Per Lidenb97bf3f2006-01-02 19:04:38 +0100222 */
Allan Stephens5c216e12011-10-18 11:34:29 -0400223struct tipc_bearer *tipc_bearer_find(const char *name)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100224{
Allan Stephens2d627b92011-01-07 13:00:11 -0500225 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100226 u32 i;
227
Per Liden4323add2006-01-18 00:38:21 +0100228 for (i = 0, b_ptr = tipc_bearers; i < MAX_BEARERS; i++, b_ptr++) {
Allan Stephens2d627b92011-01-07 13:00:11 -0500229 if (b_ptr->active && (!strcmp(b_ptr->name, name)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100230 return b_ptr;
231 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800232 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100233}
234
235/**
Per Liden4323add2006-01-18 00:38:21 +0100236 * tipc_bearer_find_interface - locates bearer object with matching interface name
Per Lidenb97bf3f2006-01-02 19:04:38 +0100237 */
Allan Stephens2d627b92011-01-07 13:00:11 -0500238struct tipc_bearer *tipc_bearer_find_interface(const char *if_name)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100239{
Allan Stephens2d627b92011-01-07 13:00:11 -0500240 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100241 char *b_if_name;
242 u32 i;
243
Per Liden4323add2006-01-18 00:38:21 +0100244 for (i = 0, b_ptr = tipc_bearers; i < MAX_BEARERS; i++, b_ptr++) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100245 if (!b_ptr->active)
246 continue;
Allan Stephens2d627b92011-01-07 13:00:11 -0500247 b_if_name = strchr(b_ptr->name, ':') + 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100248 if (!strcmp(b_if_name, if_name))
249 return b_ptr;
250 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800251 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100252}
253
254/**
Per Liden4323add2006-01-18 00:38:21 +0100255 * tipc_bearer_get_names - record names of bearers in buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100256 */
Per Liden4323add2006-01-18 00:38:21 +0100257struct sk_buff *tipc_bearer_get_names(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100258{
259 struct sk_buff *buf;
Allan Stephens2d627b92011-01-07 13:00:11 -0500260 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100261 int i, j;
262
Per Liden4323add2006-01-18 00:38:21 +0100263 buf = tipc_cfg_reply_alloc(MAX_BEARERS * TLV_SPACE(TIPC_MAX_BEARER_NAME));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100264 if (!buf)
265 return NULL;
266
Per Liden4323add2006-01-18 00:38:21 +0100267 read_lock_bh(&tipc_net_lock);
Allan Stephensa31abe82011-10-07 09:25:12 -0400268 for (i = 0; i < media_count; i++) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100269 for (j = 0; j < MAX_BEARERS; j++) {
Per Liden4323add2006-01-18 00:38:21 +0100270 b_ptr = &tipc_bearers[j];
Allan Stephensa31abe82011-10-07 09:25:12 -0400271 if (b_ptr->active && (b_ptr->media == media_list[i])) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900272 tipc_cfg_append_tlv(buf, TIPC_TLV_BEARER_NAME,
Allan Stephens2d627b92011-01-07 13:00:11 -0500273 b_ptr->name,
274 strlen(b_ptr->name) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100275 }
276 }
277 }
Per Liden4323add2006-01-18 00:38:21 +0100278 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100279 return buf;
280}
281
Allan Stephens2d627b92011-01-07 13:00:11 -0500282void tipc_bearer_add_dest(struct tipc_bearer *b_ptr, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100283{
Per Liden4323add2006-01-18 00:38:21 +0100284 tipc_nmap_add(&b_ptr->nodes, dest);
Per Liden4323add2006-01-18 00:38:21 +0100285 tipc_bcbearer_sort();
Allan Stephens12099662011-04-21 19:05:25 -0500286 tipc_disc_add_dest(b_ptr->link_req);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100287}
288
Allan Stephens2d627b92011-01-07 13:00:11 -0500289void tipc_bearer_remove_dest(struct tipc_bearer *b_ptr, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100290{
Per Liden4323add2006-01-18 00:38:21 +0100291 tipc_nmap_remove(&b_ptr->nodes, dest);
Per Liden4323add2006-01-18 00:38:21 +0100292 tipc_bcbearer_sort();
Allan Stephens12099662011-04-21 19:05:25 -0500293 tipc_disc_remove_dest(b_ptr->link_req);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100294}
295
296/*
297 * bearer_push(): Resolve bearer congestion. Force the waiting
298 * links to push out their unsent packets, one packet per link
299 * per iteration, until all packets are gone or congestion reoccurs.
Per Liden4323add2006-01-18 00:38:21 +0100300 * 'tipc_net_lock' is read_locked when this function is called
Per Lidenb97bf3f2006-01-02 19:04:38 +0100301 * bearer.lock must be taken before calling
302 * Returns binary true(1) ore false(0)
303 */
Allan Stephens2d627b92011-01-07 13:00:11 -0500304static int bearer_push(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100305{
Allan Stephens0e35fd52008-07-14 22:44:01 -0700306 u32 res = 0;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500307 struct tipc_link *ln, *tln;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100308
Allan Stephens2d627b92011-01-07 13:00:11 -0500309 if (b_ptr->blocked)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100310 return 0;
311
312 while (!list_empty(&b_ptr->cong_links) && (res != PUSH_FAILED)) {
313 list_for_each_entry_safe(ln, tln, &b_ptr->cong_links, link_list) {
Per Liden4323add2006-01-18 00:38:21 +0100314 res = tipc_link_push_packet(ln);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100315 if (res == PUSH_FAILED)
316 break;
317 if (res == PUSH_FINISHED)
318 list_move_tail(&ln->link_list, &b_ptr->links);
319 }
320 }
321 return list_empty(&b_ptr->cong_links);
322}
323
Allan Stephens2d627b92011-01-07 13:00:11 -0500324void tipc_bearer_lock_push(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100325{
Allan Stephens2d627b92011-01-07 13:00:11 -0500326 spin_lock_bh(&b_ptr->lock);
Allan Stephens23f0ff92011-04-07 11:25:26 -0400327 bearer_push(b_ptr);
Allan Stephens2d627b92011-01-07 13:00:11 -0500328 spin_unlock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100329}
330
331
332/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900333 * Interrupt enabling new requests after bearer congestion or blocking:
334 * See bearer_send().
Per Lidenb97bf3f2006-01-02 19:04:38 +0100335 */
Allan Stephens2d627b92011-01-07 13:00:11 -0500336void tipc_continue(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100337{
Allan Stephens2d627b92011-01-07 13:00:11 -0500338 spin_lock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100339 if (!list_empty(&b_ptr->cong_links))
Per Liden4323add2006-01-18 00:38:21 +0100340 tipc_k_signal((Handler)tipc_bearer_lock_push, (unsigned long)b_ptr);
Allan Stephens2d627b92011-01-07 13:00:11 -0500341 b_ptr->blocked = 0;
342 spin_unlock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100343}
344
345/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900346 * Schedule link for sending of messages after the bearer
347 * has been deblocked by 'continue()'. This method is called
348 * when somebody tries to send a message via this link while
Per Liden4323add2006-01-18 00:38:21 +0100349 * the bearer is congested. 'tipc_net_lock' is in read_lock here
Per Lidenb97bf3f2006-01-02 19:04:38 +0100350 * bearer.lock is busy
351 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500352static void tipc_bearer_schedule_unlocked(struct tipc_bearer *b_ptr,
353 struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100354{
355 list_move_tail(&l_ptr->link_list, &b_ptr->cong_links);
356}
357
358/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900359 * Schedule link for sending of messages after the bearer
360 * has been deblocked by 'continue()'. This method is called
361 * when somebody tries to send a message via this link while
Per Liden4323add2006-01-18 00:38:21 +0100362 * the bearer is congested. 'tipc_net_lock' is in read_lock here,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100363 * bearer.lock is free
364 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500365void tipc_bearer_schedule(struct tipc_bearer *b_ptr, struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100366{
Allan Stephens2d627b92011-01-07 13:00:11 -0500367 spin_lock_bh(&b_ptr->lock);
Per Liden4323add2006-01-18 00:38:21 +0100368 tipc_bearer_schedule_unlocked(b_ptr, l_ptr);
Allan Stephens2d627b92011-01-07 13:00:11 -0500369 spin_unlock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100370}
371
372
373/*
Per Liden4323add2006-01-18 00:38:21 +0100374 * tipc_bearer_resolve_congestion(): Check if there is bearer congestion,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100375 * and if there is, try to resolve it before returning.
Per Liden4323add2006-01-18 00:38:21 +0100376 * 'tipc_net_lock' is read_locked when this function is called
Per Lidenb97bf3f2006-01-02 19:04:38 +0100377 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500378int tipc_bearer_resolve_congestion(struct tipc_bearer *b_ptr,
379 struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100380{
381 int res = 1;
382
383 if (list_empty(&b_ptr->cong_links))
384 return 1;
Allan Stephens2d627b92011-01-07 13:00:11 -0500385 spin_lock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100386 if (!bearer_push(b_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +0100387 tipc_bearer_schedule_unlocked(b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100388 res = 0;
389 }
Allan Stephens2d627b92011-01-07 13:00:11 -0500390 spin_unlock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100391 return res;
392}
393
Allan Stephensb274f4a2010-05-11 14:30:16 +0000394/**
395 * tipc_bearer_congested - determines if bearer is currently congested
396 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500397int tipc_bearer_congested(struct tipc_bearer *b_ptr, struct tipc_link *l_ptr)
Allan Stephensb274f4a2010-05-11 14:30:16 +0000398{
Allan Stephens2d627b92011-01-07 13:00:11 -0500399 if (unlikely(b_ptr->blocked))
Allan Stephensb274f4a2010-05-11 14:30:16 +0000400 return 1;
401 if (likely(list_empty(&b_ptr->cong_links)))
402 return 0;
403 return !tipc_bearer_resolve_congestion(b_ptr, l_ptr);
404}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100405
406/**
407 * tipc_enable_bearer - enable bearer with the given name
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900408 */
Allan Stephens50d3e632011-02-28 14:56:15 -0500409int tipc_enable_bearer(const char *name, u32 disc_domain, u32 priority)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100410{
Allan Stephens2d627b92011-01-07 13:00:11 -0500411 struct tipc_bearer *b_ptr;
Paul Gortmaker358a0d12011-12-29 20:19:42 -0500412 struct tipc_media *m_ptr;
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500413 struct tipc_bearer_names b_names;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100414 char addr_string[16];
415 u32 bearer_id;
416 u32 with_this_prio;
417 u32 i;
418 int res = -EINVAL;
419
Allan Stephensb58343f2011-11-08 13:48:28 -0500420 if (!tipc_own_addr) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700421 warn("Bearer <%s> rejected, not supported in standalone mode\n",
422 name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100423 return -ENOPROTOOPT;
Allan Stephensa10bd922006-06-25 23:52:17 -0700424 }
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500425 if (!bearer_name_validate(name, &b_names)) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700426 warn("Bearer <%s> rejected, illegal name\n", name);
Per Liden16cb4b32006-01-13 22:22:22 +0100427 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700428 }
Allan Stephens66e019a2011-04-20 16:24:07 -0500429 if (tipc_addr_domain_valid(disc_domain) &&
430 (disc_domain != tipc_own_addr)) {
431 if (tipc_in_scope(disc_domain, tipc_own_addr)) {
432 disc_domain = tipc_own_addr & TIPC_CLUSTER_MASK;
433 res = 0; /* accept any node in own cluster */
Allan Stephens336ebf52012-04-17 18:02:01 -0400434 } else if (in_own_cluster_exact(disc_domain))
Allan Stephens66e019a2011-04-20 16:24:07 -0500435 res = 0; /* accept specified node in own cluster */
436 }
437 if (res) {
Allan Stephens50d3e632011-02-28 14:56:15 -0500438 warn("Bearer <%s> rejected, illegal discovery domain\n", name);
Allan Stephensa10bd922006-06-25 23:52:17 -0700439 return -EINVAL;
440 }
Allan Stephens9efde4a2011-11-03 13:15:10 -0400441 if ((priority > TIPC_MAX_LINK_PRI) &&
Allan Stephensa10bd922006-06-25 23:52:17 -0700442 (priority != TIPC_MEDIA_LINK_PRI)) {
443 warn("Bearer <%s> rejected, illegal priority\n", name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100444 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700445 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100446
Per Liden4323add2006-01-18 00:38:21 +0100447 write_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100448
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500449 m_ptr = tipc_media_find(b_names.media_name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100450 if (!m_ptr) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700451 warn("Bearer <%s> rejected, media <%s> not registered\n", name,
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500452 b_names.media_name);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500453 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100454 }
Per Liden16cb4b32006-01-13 22:22:22 +0100455
456 if (priority == TIPC_MEDIA_LINK_PRI)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100457 priority = m_ptr->priority;
458
459restart:
460 bearer_id = MAX_BEARERS;
461 with_this_prio = 1;
462 for (i = MAX_BEARERS; i-- != 0; ) {
Per Liden4323add2006-01-18 00:38:21 +0100463 if (!tipc_bearers[i].active) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100464 bearer_id = i;
465 continue;
466 }
Allan Stephens2d627b92011-01-07 13:00:11 -0500467 if (!strcmp(name, tipc_bearers[i].name)) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700468 warn("Bearer <%s> rejected, already enabled\n", name);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500469 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100470 }
Per Liden4323add2006-01-18 00:38:21 +0100471 if ((tipc_bearers[i].priority == priority) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100472 (++with_this_prio > 2)) {
473 if (priority-- == 0) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700474 warn("Bearer <%s> rejected, duplicate priority\n",
475 name);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500476 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100477 }
Allan Stephensa10bd922006-06-25 23:52:17 -0700478 warn("Bearer <%s> priority adjustment required %u->%u\n",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100479 name, priority + 1, priority);
480 goto restart;
481 }
482 }
483 if (bearer_id >= MAX_BEARERS) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900484 warn("Bearer <%s> rejected, bearer limit reached (%u)\n",
Allan Stephensa10bd922006-06-25 23:52:17 -0700485 name, MAX_BEARERS);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500486 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100487 }
488
Per Liden4323add2006-01-18 00:38:21 +0100489 b_ptr = &tipc_bearers[bearer_id];
Allan Stephens2d627b92011-01-07 13:00:11 -0500490 strcpy(b_ptr->name, name);
491 res = m_ptr->enable_bearer(b_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100492 if (res) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700493 warn("Bearer <%s> rejected, enable failure (%d)\n", name, -res);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500494 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100495 }
496
497 b_ptr->identity = bearer_id;
498 b_ptr->media = m_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -0400499 b_ptr->tolerance = m_ptr->tolerance;
500 b_ptr->window = m_ptr->window;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100501 b_ptr->net_plane = bearer_id + 'A';
502 b_ptr->active = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100503 b_ptr->priority = priority;
504 INIT_LIST_HEAD(&b_ptr->cong_links);
505 INIT_LIST_HEAD(&b_ptr->links);
Allan Stephens2d627b92011-01-07 13:00:11 -0500506 spin_lock_init(&b_ptr->lock);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500507
508 res = tipc_disc_create(b_ptr, &m_ptr->bcast_addr, disc_domain);
509 if (res) {
510 bearer_disable(b_ptr);
511 warn("Bearer <%s> rejected, discovery object creation failed\n",
512 name);
513 goto exit;
514 }
Per Liden16cb4b32006-01-13 22:22:22 +0100515 info("Enabled bearer <%s>, discovery domain %s, priority %u\n",
Allan Stephens50d3e632011-02-28 14:56:15 -0500516 name, tipc_addr_string_fill(addr_string, disc_domain), priority);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500517exit:
Per Liden4323add2006-01-18 00:38:21 +0100518 write_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100519 return res;
520}
521
522/**
Ben Hutchings2c530402012-07-10 10:55:09 +0000523 * tipc_block_bearer - Block the bearer with the given name, and reset all its links
Per Lidenb97bf3f2006-01-02 19:04:38 +0100524 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100525int tipc_block_bearer(const char *name)
526{
Allan Stephens2d627b92011-01-07 13:00:11 -0500527 struct tipc_bearer *b_ptr = NULL;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500528 struct tipc_link *l_ptr;
529 struct tipc_link *temp_l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100530
Per Liden4323add2006-01-18 00:38:21 +0100531 read_lock_bh(&tipc_net_lock);
Allan Stephens5c216e12011-10-18 11:34:29 -0400532 b_ptr = tipc_bearer_find(name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100533 if (!b_ptr) {
534 warn("Attempt to block unknown bearer <%s>\n", name);
Per Liden4323add2006-01-18 00:38:21 +0100535 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100536 return -EINVAL;
537 }
538
Allan Stephensa10bd922006-06-25 23:52:17 -0700539 info("Blocking bearer <%s>\n", name);
Allan Stephens2d627b92011-01-07 13:00:11 -0500540 spin_lock_bh(&b_ptr->lock);
541 b_ptr->blocked = 1;
Allan Stephens4b3743e2011-05-26 13:59:17 -0400542 list_splice_init(&b_ptr->cong_links, &b_ptr->links);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100543 list_for_each_entry_safe(l_ptr, temp_l_ptr, &b_ptr->links, link_list) {
David S. Miller6c000552008-09-02 23:38:32 -0700544 struct tipc_node *n_ptr = l_ptr->owner;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100545
546 spin_lock_bh(&n_ptr->lock);
Per Liden4323add2006-01-18 00:38:21 +0100547 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100548 spin_unlock_bh(&n_ptr->lock);
549 }
Allan Stephens2d627b92011-01-07 13:00:11 -0500550 spin_unlock_bh(&b_ptr->lock);
Per Liden4323add2006-01-18 00:38:21 +0100551 read_unlock_bh(&tipc_net_lock);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700552 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100553}
554
555/**
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400556 * bearer_disable
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900557 *
Per Liden4323add2006-01-18 00:38:21 +0100558 * Note: This routine assumes caller holds tipc_net_lock.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100559 */
Allan Stephens2d627b92011-01-07 13:00:11 -0500560static void bearer_disable(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100561{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500562 struct tipc_link *l_ptr;
563 struct tipc_link *temp_l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100564
Allan Stephens2d627b92011-01-07 13:00:11 -0500565 info("Disabling bearer <%s>\n", b_ptr->name);
Allan Stephens2d627b92011-01-07 13:00:11 -0500566 spin_lock_bh(&b_ptr->lock);
Allan Stephens2d627b92011-01-07 13:00:11 -0500567 b_ptr->blocked = 1;
568 b_ptr->media->disable_bearer(b_ptr);
Allan Stephens4b3743e2011-05-26 13:59:17 -0400569 list_splice_init(&b_ptr->cong_links, &b_ptr->links);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100570 list_for_each_entry_safe(l_ptr, temp_l_ptr, &b_ptr->links, link_list) {
Per Liden4323add2006-01-18 00:38:21 +0100571 tipc_link_delete(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100572 }
Allan Stephens3a777ff2011-04-21 13:58:26 -0500573 if (b_ptr->link_req)
574 tipc_disc_delete(b_ptr->link_req);
Allan Stephens2d627b92011-01-07 13:00:11 -0500575 spin_unlock_bh(&b_ptr->lock);
576 memset(b_ptr, 0, sizeof(struct tipc_bearer));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100577}
578
579int tipc_disable_bearer(const char *name)
580{
Allan Stephens2d627b92011-01-07 13:00:11 -0500581 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100582 int res;
583
Per Liden4323add2006-01-18 00:38:21 +0100584 write_lock_bh(&tipc_net_lock);
Allan Stephens5c216e12011-10-18 11:34:29 -0400585 b_ptr = tipc_bearer_find(name);
Allan Stephensccc901e2010-10-14 13:58:26 +0000586 if (b_ptr == NULL) {
587 warn("Attempt to disable unknown bearer <%s>\n", name);
588 res = -EINVAL;
Allan Stephens28cc9372010-11-30 12:00:56 +0000589 } else {
590 bearer_disable(b_ptr);
591 res = 0;
592 }
Per Liden4323add2006-01-18 00:38:21 +0100593 write_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100594 return res;
595}
596
597
598
Per Liden4323add2006-01-18 00:38:21 +0100599void tipc_bearer_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100600{
601 u32 i;
602
Per Lidenb97bf3f2006-01-02 19:04:38 +0100603 for (i = 0; i < MAX_BEARERS; i++) {
Per Liden4323add2006-01-18 00:38:21 +0100604 if (tipc_bearers[i].active)
Allan Stephensccc901e2010-10-14 13:58:26 +0000605 bearer_disable(&tipc_bearers[i]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100606 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100607 media_count = 0;
608}